feat(bt/bluedroid): Report sniff interval to application layer

This commit is contained in:
xiongweichao
2024-09-19 14:36:31 +08:00
committed by Xiong Wei Chao
parent efc143bf10
commit b71597416d
5 changed files with 12 additions and 7 deletions
@@ -440,8 +440,9 @@ typedef union {
* @brief ESP_BT_GAP_MODE_CHG_EVT
*/
struct mode_chg_param {
esp_bd_addr_t bda; /*!< remote bluetooth device address*/
esp_bt_pm_mode_t mode; /*!< PM mode*/
esp_bd_addr_t bda; /*!< remote bluetooth device address */
esp_bt_pm_mode_t mode; /*!< PM mode */
uint16_t interval; /*!< Number of baseband slots. unit is 0.625ms */
} mode_chg; /*!< mode change event parameter struct */
/**