mirror of
https://github.com/espressif/esp-rainmaker.git
synced 2026-01-15 14:35:30 +00:00
If local control is enabled via config option (CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE), the enabling/disabling will happen internally and the behaviour will be unchanged. However, if the config option is disabled, applications can still call esp_rmaker_local_ctrl_enable/disable at runtime as and when required, if CONFIG_ESP_RMAKER_LOCAL_CTRL_FEATURE_ENABLE option is enabled. Note that the older config option CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE has been renamed to CONFIG_ESP_RMAKER_LOCAL_CTRL_AUTO_ENABLE. However, CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE will also continue to work and ensure backward compatibility
13 lines
521 B
Makefile
13 lines
521 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/rmaker_mqtt_server.crt server_certs/rmaker_claim_service_server.crt server_certs/rmaker_ota_server.crt
|