Files
esp-rainmaker/components/esp_rainmaker/component.mk
Piyush Shah 892e61b32f esp_rmaker_core: Add a facility for local control
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.
2020-11-18 22:16:04 +05:30

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