mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-02 21:48:13 +00:00
feat(bt/bluedroid): Support ble create sync report disable and filter duplicate
This commit is contained in:
@@ -143,6 +143,12 @@
|
||||
#define UC_BT_BLE_FEAT_PERIODIC_ADV_ENH FALSE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BT_BLE_FEAT_CREATE_SYNC_ENH
|
||||
#define UC_BT_BLE_FEAT_CREATE_SYNC_ENH CONFIG_BT_BLE_FEAT_CREATE_SYNC_ENH
|
||||
#else
|
||||
#define UC_BT_BLE_FEAT_CREATE_SYNC_ENH FALSE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BT_BLE_HIGH_DUTY_ADV_INTERVAL
|
||||
#define UC_BT_BLE_HIGH_DUTY_ADV_INTERVAL CONFIG_BT_BLE_HIGH_DUTY_ADV_INTERVAL
|
||||
#else
|
||||
|
||||
@@ -205,6 +205,12 @@
|
||||
#define BLE_FEAT_PERIODIC_ADV_ENH FALSE
|
||||
#endif
|
||||
|
||||
#if (UC_BT_BLE_FEAT_CREATE_SYNC_ENH == TRUE)
|
||||
#define BLE_FEAT_CREATE_SYNC_ENH TRUE
|
||||
#else
|
||||
#define BLE_FEAT_CREATE_SYNC_ENH FALSE
|
||||
#endif
|
||||
|
||||
#if (UC_BT_BLE_HIGH_DUTY_ADV_INTERVAL == TRUE)
|
||||
#define BLE_HIGH_DUTY_ADV_INTERVAL TRUE
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user