mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
ble: update controller log module for ESP32-H2 and ESP32-C6
This commit is contained in:
@ -263,9 +263,23 @@ config BT_LE_CONTROLLER_TASK_STACK_SIZE
|
|||||||
config BT_LE_CONTROLLER_LOG_ENABLED
|
config BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
bool "Controller log enable"
|
bool "Controller log enable"
|
||||||
default n
|
default n
|
||||||
|
help
|
||||||
|
Enable controller log
|
||||||
|
|
||||||
|
config BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
bool "enable controller log module"
|
||||||
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Enable controller log module
|
Enable controller log module
|
||||||
|
|
||||||
|
config BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
bool "enable HCI log module"
|
||||||
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
Enable hci log module
|
||||||
|
|
||||||
config BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
config BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
||||||
bool "Controller log dump mode only"
|
bool "Controller log dump mode only"
|
||||||
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
@ -123,8 +123,9 @@ typedef void (*interface_func_t) (uint32_t len, const uint8_t*addr, bool end);
|
|||||||
extern int ble_osi_coex_funcs_register(struct osi_coex_funcs_t *coex_funcs);
|
extern int ble_osi_coex_funcs_register(struct osi_coex_funcs_t *coex_funcs);
|
||||||
extern int ble_controller_init(esp_bt_controller_config_t *cfg);
|
extern int ble_controller_init(esp_bt_controller_config_t *cfg);
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
extern int ble_log_init_async(interface_func_t bt_controller_log_interface, bool task_create);
|
extern int ble_log_init_async(interface_func_t bt_controller_log_interface, bool task_create, uint8_t buffers, uint32_t *bufs_size);
|
||||||
extern int ble_log_deinit_async(void);
|
extern int ble_log_deinit_async(void);
|
||||||
|
extern void ble_log_async_select_dump_buffers(uint8_t buffers);
|
||||||
extern void ble_log_async_output_dump_all(bool output);
|
extern void ble_log_async_output_dump_all(bool output);
|
||||||
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
extern int ble_controller_deinit(void);
|
extern int ble_controller_deinit(void);
|
||||||
@ -200,6 +201,11 @@ static void esp_bt_controller_log_interface(uint32_t len, const uint8_t *addr, b
|
|||||||
/* Static variable declare */
|
/* Static variable declare */
|
||||||
static DRAM_ATTR esp_bt_controller_status_t ble_controller_status = ESP_BT_CONTROLLER_STATUS_IDLE;
|
static DRAM_ATTR esp_bt_controller_status_t ble_controller_status = ESP_BT_CONTROLLER_STATUS_IDLE;
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
const static uint32_t log_bufs_size[] = {6144, 1024, 2048};
|
||||||
|
static uint8_t buffers = 0;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
|
||||||
/* This variable tells if BLE is running */
|
/* This variable tells if BLE is running */
|
||||||
static bool s_ble_active = false;
|
static bool s_ble_active = false;
|
||||||
#ifdef CONFIG_PM_ENABLE
|
#ifdef CONFIG_PM_ENABLE
|
||||||
@ -766,6 +772,26 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
coex_init();
|
coex_init();
|
||||||
#endif // CONFIG_SW_COEXIST_ENABLE
|
#endif // CONFIG_SW_COEXIST_ENABLE
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
interface_func_t bt_controller_log_interface;
|
||||||
|
bt_controller_log_interface = esp_bt_controller_log_interface;
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
buffers |= ESP_BLE_LOG_BUF_CONTROLLER;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
buffers |= ESP_BLE_LOG_BUF_HCI;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
||||||
|
ret = ble_log_init_async(bt_controller_log_interface, false, buffers, (uint32_t *)log_bufs_size);
|
||||||
|
#else
|
||||||
|
ret = ble_log_init_async(bt_controller_log_interface, true, buffers, (uint32_t *)log_bufs_size);
|
||||||
|
#endif // CONFIG_BT_CONTROLLER_LOG_DUMP
|
||||||
|
if (ret != ESP_OK) {
|
||||||
|
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_log_init failed %d", ret);
|
||||||
|
goto modem_deint;
|
||||||
|
}
|
||||||
|
#endif // CONFIG_BT_CONTROLLER_LOG_ENABLED
|
||||||
|
|
||||||
ret = ble_controller_init(cfg);
|
ret = ble_controller_init(cfg);
|
||||||
if (ret != ESP_OK) {
|
if (ret != ESP_OK) {
|
||||||
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_init failed %d", ret);
|
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_init failed %d", ret);
|
||||||
@ -773,19 +799,6 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
esp_ble_change_rtc_freq(slow_clk_freq);
|
esp_ble_change_rtc_freq(slow_clk_freq);
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
interface_func_t bt_controller_log_interface;
|
|
||||||
bt_controller_log_interface = esp_bt_controller_log_interface;
|
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
|
||||||
ret = ble_log_init_async(bt_controller_log_interface, false);
|
|
||||||
#else
|
|
||||||
ret = ble_log_init_async(bt_controller_log_interface, true);
|
|
||||||
#endif // CONFIG_BT_CONTROLLER_LOG_DUMP
|
|
||||||
if (ret != ESP_OK) {
|
|
||||||
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_log_init failed %d", ret);
|
|
||||||
goto controller_init_err;
|
|
||||||
}
|
|
||||||
#endif // CONFIG_BT_CONTROLLER_LOG_ENABLED
|
|
||||||
|
|
||||||
ble_controller_scan_duplicate_config();
|
ble_controller_scan_duplicate_config();
|
||||||
|
|
||||||
@ -812,13 +825,12 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
|
|
||||||
free_controller:
|
free_controller:
|
||||||
controller_sleep_deinit();
|
controller_sleep_deinit();
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
controller_init_err:
|
|
||||||
ble_log_deinit_async();
|
|
||||||
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
os_msys_deinit();
|
os_msys_deinit();
|
||||||
ble_controller_deinit();
|
ble_controller_deinit();
|
||||||
modem_deint:
|
modem_deint:
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
ble_log_deinit_async();
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
esp_phy_modem_deinit();
|
esp_phy_modem_deinit();
|
||||||
modem_clock_deselect_lp_clock_source(PERIPH_BT_MODULE);
|
modem_clock_deselect_lp_clock_source(PERIPH_BT_MODULE);
|
||||||
modem_clock_module_disable(PERIPH_BT_MODULE);
|
modem_clock_module_disable(PERIPH_BT_MODULE);
|
||||||
|
@ -263,9 +263,23 @@ config BT_LE_CONTROLLER_TASK_STACK_SIZE
|
|||||||
config BT_LE_CONTROLLER_LOG_ENABLED
|
config BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
bool "Controller log enable"
|
bool "Controller log enable"
|
||||||
default n
|
default n
|
||||||
|
help
|
||||||
|
Enable controller log
|
||||||
|
|
||||||
|
config BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
bool "enable controller log module"
|
||||||
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Enable controller log module
|
Enable controller log module
|
||||||
|
|
||||||
|
config BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
bool "enable HCI log module"
|
||||||
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
Enable hci log module
|
||||||
|
|
||||||
config BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
config BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
||||||
bool "Controller log dump mode only"
|
bool "Controller log dump mode only"
|
||||||
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
depends on BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
@ -117,8 +117,9 @@ typedef void (*interface_func_t) (uint32_t len, const uint8_t*addr, bool end);
|
|||||||
extern int ble_osi_coex_funcs_register(struct osi_coex_funcs_t *coex_funcs);
|
extern int ble_osi_coex_funcs_register(struct osi_coex_funcs_t *coex_funcs);
|
||||||
extern int ble_controller_init(esp_bt_controller_config_t *cfg);
|
extern int ble_controller_init(esp_bt_controller_config_t *cfg);
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
extern int ble_log_init_async(interface_func_t bt_controller_log_interface, bool task_create);
|
extern int ble_log_init_async(interface_func_t bt_controller_log_interface, bool task_create, uint8_t buffers, uint32_t *bufs_size);
|
||||||
extern int ble_log_deinit_async(void);
|
extern int ble_log_deinit_async(void);
|
||||||
|
extern void ble_log_async_select_dump_buffers(uint8_t buffers);
|
||||||
extern void ble_log_async_output_dump_all(bool output);
|
extern void ble_log_async_output_dump_all(bool output);
|
||||||
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
extern int ble_controller_deinit(void);
|
extern int ble_controller_deinit(void);
|
||||||
@ -194,6 +195,11 @@ static void esp_bt_controller_log_interface(uint32_t len, const uint8_t *addr, b
|
|||||||
/* Static variable declare */
|
/* Static variable declare */
|
||||||
static DRAM_ATTR esp_bt_controller_status_t ble_controller_status = ESP_BT_CONTROLLER_STATUS_IDLE;
|
static DRAM_ATTR esp_bt_controller_status_t ble_controller_status = ESP_BT_CONTROLLER_STATUS_IDLE;
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
const static uint32_t log_bufs_size[] = {6144, 1024, 2048};
|
||||||
|
static uint8_t buffers = 0;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
|
||||||
/* This variable tells if BLE is running */
|
/* This variable tells if BLE is running */
|
||||||
static bool s_ble_active = false;
|
static bool s_ble_active = false;
|
||||||
#ifdef CONFIG_PM_ENABLE
|
#ifdef CONFIG_PM_ENABLE
|
||||||
@ -746,6 +752,26 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
coex_init();
|
coex_init();
|
||||||
#endif // CONFIG_SW_COEXIST_ENABLE
|
#endif // CONFIG_SW_COEXIST_ENABLE
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
interface_func_t bt_controller_log_interface;
|
||||||
|
bt_controller_log_interface = esp_bt_controller_log_interface;
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
buffers |= ESP_BLE_LOG_BUF_CONTROLLER;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_CTRL_ENABLED
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
buffers |= ESP_BLE_LOG_BUF_HCI;
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_HCI_ENABLED
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
||||||
|
ret = ble_log_init_async(bt_controller_log_interface, false, buffers, (uint32_t *)log_bufs_size);
|
||||||
|
#else
|
||||||
|
ret = ble_log_init_async(bt_controller_log_interface, true, buffers, (uint32_t *)log_bufs_size);
|
||||||
|
#endif // CONFIG_BT_CONTROLLER_LOG_DUMP
|
||||||
|
if (ret != ESP_OK) {
|
||||||
|
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_log_init failed %d", ret);
|
||||||
|
goto modem_deint;
|
||||||
|
}
|
||||||
|
#endif // CONFIG_BT_CONTROLLER_LOG_ENABLED
|
||||||
|
|
||||||
ret = ble_controller_init(cfg);
|
ret = ble_controller_init(cfg);
|
||||||
if (ret != ESP_OK) {
|
if (ret != ESP_OK) {
|
||||||
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_init failed %d", ret);
|
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_init failed %d", ret);
|
||||||
@ -753,19 +779,6 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
esp_ble_change_rtc_freq(slow_clk_freq);
|
esp_ble_change_rtc_freq(slow_clk_freq);
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
interface_func_t bt_controller_log_interface;
|
|
||||||
bt_controller_log_interface = esp_bt_controller_log_interface;
|
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_DUMP_ONLY
|
|
||||||
ret = ble_log_init_async(bt_controller_log_interface, false);
|
|
||||||
#else
|
|
||||||
ret = ble_log_init_async(bt_controller_log_interface, true);
|
|
||||||
#endif // CONFIG_BT_CONTROLLER_LOG_DUMP
|
|
||||||
if (ret != ESP_OK) {
|
|
||||||
ESP_LOGW(NIMBLE_PORT_LOG_TAG, "ble_controller_log_init failed %d", ret);
|
|
||||||
goto controller_init_err;
|
|
||||||
}
|
|
||||||
#endif // CONFIG_BT_CONTROLLER_LOG_ENABLED
|
|
||||||
|
|
||||||
ble_controller_scan_duplicate_config();
|
ble_controller_scan_duplicate_config();
|
||||||
|
|
||||||
@ -793,13 +806,12 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg)
|
|||||||
|
|
||||||
free_controller:
|
free_controller:
|
||||||
controller_sleep_deinit();
|
controller_sleep_deinit();
|
||||||
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
controller_init_err:
|
|
||||||
ble_log_deinit_async();
|
|
||||||
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
|
||||||
os_msys_deinit();
|
os_msys_deinit();
|
||||||
ble_controller_deinit();
|
ble_controller_deinit();
|
||||||
modem_deint:
|
modem_deint:
|
||||||
|
#if CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
|
ble_log_deinit_async();
|
||||||
|
#endif // CONFIG_BT_LE_CONTROLLER_LOG_ENABLED
|
||||||
modem_clock_deselect_lp_clock_source(PERIPH_BT_MODULE);
|
modem_clock_deselect_lp_clock_source(PERIPH_BT_MODULE);
|
||||||
modem_clock_module_disable(PERIPH_BT_MODULE);
|
modem_clock_module_disable(PERIPH_BT_MODULE);
|
||||||
#if CONFIG_BT_NIMBLE_ENABLED
|
#if CONFIG_BT_NIMBLE_ENABLED
|
||||||
|
@ -103,6 +103,14 @@ typedef enum {
|
|||||||
ESP_BLE_ENHANCED_PWR_TYPE_MAX,
|
ESP_BLE_ENHANCED_PWR_TYPE_MAX,
|
||||||
} esp_ble_enhanced_power_type_t;
|
} esp_ble_enhanced_power_type_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Select buffers
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
ESP_BLE_LOG_BUF_HCI = 0x02,
|
||||||
|
ESP_BLE_LOG_BUF_CONTROLLER = 0x05,
|
||||||
|
} esp_ble_log_buf_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Address type and address value.
|
* @brief Address type and address value.
|
||||||
*/
|
*/
|
||||||
|
@ -116,6 +116,14 @@ typedef struct {
|
|||||||
uint8_t val[6]; /*!< Array containing the 6-byte Bluetooth address value */
|
uint8_t val[6]; /*!< Array containing the 6-byte Bluetooth address value */
|
||||||
} esp_ble_addr_t;
|
} esp_ble_addr_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Select buffers
|
||||||
|
*/
|
||||||
|
typedef enum {
|
||||||
|
ESP_BLE_LOG_BUF_HCI = 0x02,
|
||||||
|
ESP_BLE_LOG_BUF_CONTROLLER = 0x05,
|
||||||
|
} esp_ble_log_buf_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set BLE TX power
|
* @brief Set BLE TX power
|
||||||
* Connection Tx power should only be set after connection created.
|
* Connection Tx power should only be set after connection created.
|
||||||
|
Reference in New Issue
Block a user