mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 12:25:30 +00:00
Once the node connects to a Wi-Fi network, it would now be possible to control it from a client in the same network. This will be useful when the Internet connection is down. It will also reduce the cloud communication in general and will be faster.
17 lines
607 B
Makefile
17 lines
607 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
|
|
|
|
ifndef CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE
|
|
COMPONENT_OBJEXCLUDE += src/core/esp_rmaker_local_ctrl.o
|
|
endif
|
|
|
|
COMPONENT_EMBED_TXTFILES := server_certs/mqtt_server.crt server_certs/claim_service_server.crt server_certs/ota_server.crt
|