Merge branch 'bugfix/fix_bleqabr23_398' into 'master'

Support BLE RX error packet count record on esp32c3

See merge request espressif/esp-idf!25317
pull/12097/head
Zhi Wei Jian 2023-08-14 11:55:32 +08:00
commit ad77064b9f
2 zmienionych plików z 5 dodań i 1 usunięć

@ -1 +1 @@
Subproject commit 040cd0eafd8c6ee52bc7f7d5d633c9dc1b99bba2
Subproject commit 0cfac1b21ebc995e8e9aa040ab1ab29deee4f580

Wyświetl plik

@ -125,7 +125,11 @@ typedef uint8_t esp_link_key[ESP_BT_OCTET16_LEN]; /* Link Key */
/// Default GATT interface id
#define ESP_DEFAULT_GATT_IF 0xff
#if BLE_HIGH_DUTY_ADV_INTERVAL
#define ESP_BLE_PRIM_ADV_INT_MIN 0x000008 /*!< Minimum advertising interval for undirected and low duty cycle directed advertising */
#else
#define ESP_BLE_PRIM_ADV_INT_MIN 0x000020 /*!< Minimum advertising interval for undirected and low duty cycle directed advertising */
#endif
#define ESP_BLE_PRIM_ADV_INT_MAX 0xFFFFFF /*!< Maximum advertising interval for undirected and low duty cycle directed advertising */
#define ESP_BLE_CONN_INT_MIN 0x0006 /*!< relate to BTM_BLE_CONN_INT_MIN in stack/btm_ble_api.h */
#define ESP_BLE_CONN_INT_MAX 0x0C80 /*!< relate to BTM_BLE_CONN_INT_MAX in stack/btm_ble_api.h */