mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 20:54:32 +02:00
feat(ble): support memory allocation check debug feature on ESP32-H2
This commit is contained in:
@@ -441,6 +441,12 @@ menu "Controller debug features"
|
|||||||
config BT_LE_PTR_CHECK_ENABLED
|
config BT_LE_PTR_CHECK_ENABLED
|
||||||
bool "Enable boundary check for internal memory"
|
bool "Enable boundary check for internal memory"
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config BT_LE_MEM_CHECK_ENABLED
|
||||||
|
bool "Enable memory allocation check"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Used in internal tests only. Enable the memory allocation check.
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
config BT_LE_LL_RESOLV_LIST_SIZE
|
config BT_LE_LL_RESOLV_LIST_SIZE
|
||||||
|
@@ -1693,3 +1693,10 @@ ble_capture_info_user_handler(uint8_t type, uint32_t reason, uint32_t param1, ui
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_MEM_CHECK_ENABLED
|
||||||
|
void ble_memory_count_limit_set(uint16_t count_limit)
|
||||||
|
{
|
||||||
|
bt_osi_mem_count_limit_set(count_limit);
|
||||||
|
}
|
||||||
|
#endif // CONFIG_BT_LE_MEM_CHECK_ENABLED
|
||||||
|
@@ -462,6 +462,10 @@ uint32_t esp_bt_get_lpclk_freq(void);
|
|||||||
|
|
||||||
void esp_bt_set_lpclk_freq(uint32_t clk_freq);
|
void esp_bt_set_lpclk_freq(uint32_t clk_freq);
|
||||||
|
|
||||||
|
#if CONFIG_BT_LE_MEM_CHECK_ENABLED
|
||||||
|
void ble_memory_count_limit_set(uint16_t count_limit);
|
||||||
|
#endif // CONFIG_BT_LE_MEM_CHECK_ENABLED
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user