388b350f0d
- Adds NimBLE stack support to existing BLE variant of unified provisioning. - Uses scan response to send device name, 128 bit custom UUIDs based on service UUID. - Minimal changes to `app_prov.c`, component.mk, CMakeLists.txt and `protocomm_ble.h` to accomodate NimBLE stack for provisioning.
10 lines
272 B
Makefile
10 lines
272 B
Makefile
COMPONENT_SRCDIRS := src proto-c
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_PRIV_INCLUDEDIRS := src proto-c ../protocomm/proto-c/
|
|
|
|
ifndef CONFIG_BT_BLUEDROID_ENABLED
|
|
ifndef CONFIG_BT_NIMBLE_ENABLED
|
|
COMPONENT_OBJEXCLUDE := src/scheme_ble.o
|
|
endif
|
|
endif
|
|
|