mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 23:06:04 +00:00
This is specifically for simplifying ESP32 claiming workflow, wherein the phone apps will assist the node for claiming during Wi-Fi provisioning. There would be no need of using CLI for claiming. This will work only for BLE provisioning, as internet connectivity will be required for claiming, and it may not be possible with SoftAP.
13 lines
500 B
Makefile
13 lines
500 B
Makefile
COMPONENT_SRCDIRS := src/core src/mqtt src/ota src/standard_types src/console
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
COMPONENT_PRIV_INCLUDEDIRS := src/core src/ota src/console
|
|
|
|
ifndef CONFIG_ESP_RMAKER_ASSISTED_CLAIM
|
|
COMPONENT_OBJEXCLUDE += src/core/esp_rmaker_claim.pb-c.o
|
|
ifndef CONFIG_ESP_RMAKER_SELF_CLAIM
|
|
COMPONENT_OBJEXCLUDE += src/core/esp_rmaker_claim.o
|
|
endif
|
|
endif
|
|
|
|
COMPONENT_EMBED_TXTFILES := server_certs/mqtt_server.crt server_certs/claim_service_server.crt server_certs/ota_server.crt
|