Search found 3 matches

by smccusk
Thu Sep 18, 2025 6:39 am
Forum: ESP-IDF
Topic: linker error to unknown references in NimBLE source code
Replies: 4
Views: 900

Re: linker error to unknown references in NimBLE source code


BLE_STORE_MAX_CSFCS and BLE_STORE_MAX_BONDS : Both are driven by menu config macro: BT_NIMBLE_MAX_BONDS
BLE_STORE_CONFIG_PERSIST : Driven by menuconfig macro: BT_NIMBLE_NVS_PERSIST


BT_NIMBLE_MAX_BONDS had been changed to 0, so setting that to 1 has fixed the issue and I can compile the code ...
by smccusk
Mon Sep 01, 2025 5:01 am
Forum: ESP-IDF
Topic: linker error to unknown references in NimBLE source code
Replies: 4
Views: 900

Re: linker error to unknown references in NimBLE source code


These are configurable from menuconfig. They have some default predefined values ( i.e. it is not 0 )


Thanks for your response!

When I use the jump to symbol tool in the menuconfig editor, it returns "no results" for BLE_STORE_MAX_CSFCS, BLE_STORE_CONFIG_PERSIST, or BLE_STORE_MAX_BONDS.

Is it ...
by smccusk
Tue Aug 26, 2025 7:26 am
Forum: ESP-IDF
Topic: linker error to unknown references in NimBLE source code
Replies: 4
Views: 900

linker error to unknown references in NimBLE source code

I'm currently in the process of migrating an existing codebase from ESP-IDF 4.4.6 to ESP-IDF 5.4.2. I've followed the migration guides as set out on the Programming Guide.

I'm not able to compile the code currently, the linker is returning errors for undefined references to the following symbols ...

Go to advanced search