Create a new empty CEC command instance
| 1414 | /// Create a new empty CEC command instance |
| 1415 | /// </summary> |
| 1416 | CecCommand(void) |
| 1417 | { |
| 1418 | Initiator = CecLogicalAddress::Unknown; |
| 1419 | Destination = CecLogicalAddress::Unknown; |
| 1420 | Ack = false; |
| 1421 | Eom = false; |
| 1422 | Opcode = CecOpcode::None; |
| 1423 | OpcodeSet = false; |
| 1424 | TransmitTimeout = 0; |
| 1425 | Parameters = gcnew CecDatapacket; |
| 1426 | Empty = true; |
| 1427 | } |
| 1428 | |
| 1429 | /// <summary> |
| 1430 | /// Pushes a byte of data to this CEC command |
no outgoing calls
no test coverage detected