mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
3414629614
`ESP_WIFI_EAP_USER` and `ESP_WIFI_EAP_PASS` have to be defined because this board is used in the CI to compile the optional module `esp_wifi_enterprise`.
11 lines
454 B
Makefile
11 lines
454 B
Makefile
# We must duplicate the include done by $(RIOTBASE)/Makefile.include
|
|
# to also include the main board header
|
|
INCLUDES += $(addprefix -I,$(wildcard $(RIOTBOARD)/esp32-wrover-kit/include))
|
|
|
|
# ESP_WIFI_EAP_USER and ESP_WIFI_EAP_PASS have to be defined to compile the
|
|
# optional module esp_wifi_enterprise in CI
|
|
CFLAGS += -DESP_WIFI_EAP_USER=\"riot@riot-os.org\"
|
|
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\"
|
|
|
|
include $(RIOTBOARD)/esp32-wrover-kit/Makefile.include
|