X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Fcectypes.h;h=7fa70c7897034c3a8a5fcab34f5825c314c32644;hb=8d84e2c0857878d0391aee40190919cf57d689e7;hp=c08c64d4d4bdcb2d462a1083f4fc13b86e866856;hpb=0e31a62c1ff3854f1c4dad3fb0917683c9528e5b;p=deb_libcec.git diff --git a/include/cectypes.h b/include/cectypes.h index c08c64d..7fa70c7 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -634,6 +634,7 @@ typedef struct cec_command cec_opcode opcode; cec_datapacket parameters; int8_t opcode_set; + int32_t ack_timeout; #ifdef __cplusplus static void format(cec_command &command, cec_logical_address initiator, cec_logical_address destination, cec_opcode opcode) @@ -643,6 +644,7 @@ typedef struct cec_command command.destination = destination; command.opcode = opcode; command.opcode_set = 1; + command.ack_timeout = 1000; } void push_back(uint8_t data) @@ -669,6 +671,7 @@ typedef struct cec_command eom = 0; opcode_set = 0; opcode = CEC_OPCODE_FEATURE_ABORT; + ack_timeout = 1000; parameters.clear(); }; #endif