We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 629fea4 commit 392909eCopy full SHA for 392909e
src/platform/ESP32/nimble/BLEManagerImpl.cpp
@@ -70,6 +70,9 @@
70
#include "services/gap/ble_svc_gap.h"
71
#include "services/gatt/ble_svc_gatt.h"
72
73
+// Not declared in any header file, hence requires a forward declaration.
74
+extern "C" void ble_store_config_init(void);
75
+
76
#define MAX_ADV_DATA_LEN 31
77
#define CHIP_ADV_DATA_TYPE_FLAGS 0x01
78
#define CHIP_ADV_DATA_FLAGS 0x06
@@ -957,6 +960,7 @@ CHIP_ERROR BLEManagerImpl::InitESPBleLayer(void)
957
960
}
958
961
959
962
963
+ ble_store_config_init();
964
nimble_port_freertos_init(bleprph_host_task);
965
966
xSemaphoreTake(semaphoreHandle, portMAX_DELAY);
0 commit comments