Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boards/esp32: cleanup CI compilation for esp_wifi_enterprise #18218

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions boards/esp32-wrover-kit/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,23 +125,6 @@
#endif
/** @} */

#ifndef DOXYGEN
/**
* @name Default configuration parameters for ESP WiFi Enterprise netdev
* @{
*/
#ifndef ESP_WIFI_EAP_USER
/** User name used in phase 2 (inner) EAP authentication. */
#define ESP_WIFI_EAP_USER "[email protected]"
#endif /* ESP_WIFI_EAP_USER */

#ifndef ESP_WIFI_EAP_PASS
/** Password used in phase 2 (inner) EAP authentication. */
#define ESP_WIFI_EAP_PASS "riot-os"
#endif /* ESP_WIFI_EAP_PASS */
/** @} */
#endif /* !DOXYGEN */

/* include common board definitions as last step */
#include "board_common.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +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
# optional module esp_wifi_enterprise in CI
CFLAGS += -DESP_WIFI_EAP_USER=\"[email protected]\"
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\"

include $(RIOTBOARD)/esp32-wrover-kit/Makefile.include