@@ -21,17 +21,17 @@ namespace ArtNetSharp
2121 /// </summary>
2222 public readonly bool InputDisabled ;
2323 /// <summary>
24- /// Channel includes DMX512 test packets.
24+ /// Channel includes DMX512 text packets.
2525 /// </summary>
26- public readonly bool DMX_TestPacketsSupported ;
26+ public readonly bool DMX_TextPacketsSupported ;
2727 /// <summary>
2828 /// Channel includes DMX512 SIP’s.
2929 /// </summary>
3030 public readonly bool DMX_SIPsSupported ;
3131 /// <summary>
3232 /// Channel includes DMX512 test packets.
3333 /// </summary>
34- public readonly bool DMX_TestPacketsSupported2 ;
34+ public readonly bool DMX_TestPacketsSupported ;
3535 /// <summary>
3636 /// Data received.
3737 /// </summary>
@@ -44,26 +44,26 @@ public GoodInput(in byte byte1)
4444 ConvertTo = ( EConvertTo ) ( Byte1 & 0b00000001 ) ;
4545 ReceiveErrorsDetected = Tools . BitsMatch ( Byte1 , 0b00000100 ) ;
4646 InputDisabled = Tools . BitsMatch ( Byte1 , 0b00001000 ) ;
47- DMX_TestPacketsSupported = Tools . BitsMatch ( Byte1 , 0b00010000 ) ;
47+ DMX_TextPacketsSupported = Tools . BitsMatch ( Byte1 , 0b00010000 ) ;
4848 DMX_SIPsSupported = Tools . BitsMatch ( Byte1 , 0b00100000 ) ;
49- DMX_TestPacketsSupported2 = Tools . BitsMatch ( Byte1 , 0b01000000 ) ;
49+ DMX_TestPacketsSupported = Tools . BitsMatch ( Byte1 , 0b01000000 ) ;
5050 DataReceived = Tools . BitsMatch ( Byte1 , 0b10000000 ) ;
5151 }
5252
5353 public GoodInput ( in EConvertTo convertTo = EConvertTo . ArtNet ,
5454 in bool receiveErrorsDetected = false ,
5555 in bool inputDisabled = false ,
56- in bool dMX_TestPacketsSupported = false ,
56+ in bool dMX_TextPacketsSupported = false ,
5757 in bool dMX_SIPsSupported = false ,
58- in bool dMX_TestPacketsSupported2 = false ,
58+ in bool dMX_TestPacketsSupported = false ,
5959 in bool dataReceived = false ) : this ( )
6060 {
6161 ConvertTo = convertTo ;
6262 ReceiveErrorsDetected = receiveErrorsDetected ;
6363 InputDisabled = inputDisabled ;
64- DMX_TestPacketsSupported = dMX_TestPacketsSupported ;
64+ DMX_TextPacketsSupported = dMX_TextPacketsSupported ;
6565 DMX_SIPsSupported = dMX_SIPsSupported ;
66- DMX_TestPacketsSupported2 = dMX_TestPacketsSupported2 ;
66+ DMX_TestPacketsSupported = dMX_TestPacketsSupported ;
6767 DataReceived = dataReceived ;
6868
6969 Byte1 |= ( byte ) ConvertTo ;
@@ -73,11 +73,11 @@ public GoodInput(in EConvertTo convertTo = EConvertTo.ArtNet,
7373 Byte1 |= 0b00000100 ;
7474 if ( InputDisabled )
7575 Byte1 |= 0b00001000 ;
76- if ( DMX_TestPacketsSupported )
76+ if ( DMX_TextPacketsSupported )
7777 Byte1 |= 0b00010000 ;
7878 if ( DMX_SIPsSupported )
7979 Byte1 |= 0b00100000 ;
80- if ( DMX_TestPacketsSupported2 )
80+ if ( DMX_TestPacketsSupported )
8181 Byte1 |= 0b01000000 ;
8282 if ( DataReceived )
8383 Byte1 |= 0b10000000 ;
0 commit comments