Search found 2 matches
- Wed Oct 29, 2025 9:13 pm
- Forum: ESP-IDF
- Topic: ESP-IDF 5.1.1 gatt_server identifier "CONFIG_BT_LE_LL_RESOLV_LIST_SIZE" is undefined
- Replies: 3
- Views: 2981
Re: ESP-IDF 5.1.1 gatt_server identifier "CONFIG_BT_LE_LL_RESOLV_LIST_SIZE" is undefined
I tried with ESP-IDF 5.4.3 and it is working.
- Mon Oct 27, 2025 9:03 pm
- Forum: ESP-IDF
- Topic: ESP-IDF 5.1.1 gatt_server identifier "CONFIG_BT_LE_LL_RESOLV_LIST_SIZE" is undefined
- Replies: 3
- Views: 2981
Re: ESP-IDF 5.1.1 gatt_server identifier "CONFIG_BT_LE_LL_RESOLV_LIST_SIZE" is undefined
I have the same issue with that simple code:
#include "esp_bt.h"
void init_bluetooth() {
// Initialize the Bluetooth controller
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
esp_bt_controller_init(&bt_cfg);
esp_bt_controller_enable(ESP_BT_MODE_BLE);
// Initialize ...
#include "esp_bt.h"
void init_bluetooth() {
// Initialize the Bluetooth controller
esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
esp_bt_controller_init(&bt_cfg);
esp_bt_controller_enable(ESP_BT_MODE_BLE);
// Initialize ...