You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param bQuickScan True to do a "quick scan", which will not open a connection to the adapter. Firmware version information and the exact device type will be missing
439
469
* @return The number of devices that were found, or -1 when an error occurred.
Copy file name to clipboardExpand all lines: include/cectypes.h
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -375,7 +375,8 @@ typedef enum cec_version
375
375
CEC_VERSION_1_2A = 0x02,
376
376
CEC_VERSION_1_3 = 0x03,
377
377
CEC_VERSION_1_3A = 0x04,
378
-
CEC_VERSION_1_4 = 0x05
378
+
CEC_VERSION_1_4 = 0x05,
379
+
CEC_VERSION_2_0 = 0x06,
379
380
} cec_version;
380
381
381
382
typedefenum cec_channel_identifier
@@ -886,7 +887,7 @@ typedef enum cec_adapter_type
886
887
ADAPTERTYPE_EXYNOS = 0x300,
887
888
ADAPTERTYPE_LINUX = 0x400,
888
889
ADAPTERTYPE_AOCEC = 0x500,
889
-
ADAPTERTYPE_IMX = 0x600
890
+
ADAPTERTYPE_IMX = 0x600
890
891
} cec_adapter_type;
891
892
892
893
/** force exporting through swig */
@@ -1502,7 +1503,7 @@ struct libcec_configuration
1502
1503
uint8_t bMonitorOnly; /*!< won't allocate a CCECClient when starting the connection when set (same as monitor mode). added in 1.6.3 */
1503
1504
cec_version cecVersion; /*!< CEC spec version to use by libCEC. defaults to v1.4. added in 1.8.0 */
1504
1505
cec_adapter_type adapterType; /*!< type of the CEC adapter that we're connected to. added in 1.8.2 */
1505
-
cec_user_control_code comboKey; /*!< key code that initiates combo keys. defaults to CEC_USER_CONTROL_CODE_F1_BLUE. CEC_USER_CONTROL_CODE_UNKNOWN to disable. added in 2.0.5 */
1506
+
cec_user_control_code comboKey; /*!< key code that initiates combo keys. defaults to CEC_USER_CONTROL_CODE_STOP. CEC_USER_CONTROL_CODE_UNKNOWN to disable. added in 2.0.5 */
1506
1507
uint32_t iComboKeyTimeoutMs; /*!< timeout until the combo key is sent as normal keypress */
1507
1508
uint32_t iButtonRepeatRateMs; /*!< rate at which buttons autorepeat. 0 means rely on CEC device */
1508
1509
uint32_t iButtonReleaseDelayMs;/*!< duration after last update until a button is considered released */
0 commit comments