-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cpu/esp_common: rename ESP_WIFI_EAP_* -> WIFI_EAP_*
- Loading branch information
Showing
7 changed files
with
49 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# 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 | ||
# WIFI_EAP_USER and WIFI_EAP_PASS have to be defined to compile the | ||
# optional module esp_wifi_enterprise in CI | ||
CFLAGS += -DESP_WIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\" | ||
CFLAGS += -DWIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DWIFI_EAP_PASS=\"riot\" | ||
|
||
include $(RIOTBOARD)/esp32-wrover-kit/Makefile.include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# to also include the main board header | ||
INCLUDES += $(addprefix -I,$(wildcard $(RIOTBOARD)/esp32c3-devkit/include)) | ||
|
||
# ESP_WIFI_EAP_USER and ESP_WIFI_EAP_PASS have to be defined to compile the | ||
# WIFI_EAP_USER and WIFI_EAP_PASS have to be defined to compile the | ||
# optional module esp_wifi_enterprise in CI | ||
CFLAGS += -DESP_WIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\" | ||
CFLAGS += -DWIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DWIFI_EAP_PASS=\"riot\" | ||
|
||
include $(RIOTBOARD)/esp32c3-devkit/Makefile.include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# to also include the main board header | ||
INCLUDES += $(addprefix -I,$(wildcard $(RIOTBOARD)/esp32s2-devkit/include)) | ||
|
||
# ESP_WIFI_EAP_USER and ESP_WIFI_EAP_PASS have to be defined to compile the | ||
# WIFI_EAP_USER and WIFI_EAP_PASS have to be defined to compile the | ||
# optional module esp_wifi_enterprise in CI | ||
CFLAGS += -DESP_WIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\" | ||
CFLAGS += -DWIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DWIFI_EAP_PASS=\"riot\" | ||
|
||
include $(RIOTBOARD)/esp32s2-devkit/Makefile.include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# to also include the main board header | ||
INCLUDES += $(addprefix -I,$(wildcard $(RIOTBOARD)/esp32s3-devkit/include)) | ||
|
||
# ESP_WIFI_EAP_USER and ESP_WIFI_EAP_PASS have to be defined to compile the | ||
# WIFI_EAP_USER and WIFI_EAP_PASS have to be defined to compile the | ||
# optional module esp_wifi_enterprise in CI | ||
CFLAGS += -DESP_WIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\" | ||
CFLAGS += -DWIFI_EAP_USER=\"[email protected]\" | ||
CFLAGS += -DWIFI_EAP_PASS=\"riot\" | ||
|
||
include $(RIOTBOARD)/esp32s3-devkit/Makefile.include |