Skip to content

Commit

Permalink
Merge pull request #18218 from gschorcht/boards/esp32/cleanup_ci_comp…
Browse files Browse the repository at this point in the history
…ilation

boards/esp32: cleanup CI compilation for esp_wifi_enterprise
  • Loading branch information
benpicco authored Jun 19, 2022
2 parents e32c19f + 3414629 commit 1638606
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
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 "riot-os@riot-os.org"
#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=\"riot@riot-os.org\"
CFLAGS += -DESP_WIFI_EAP_PASS=\"riot\"

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

0 comments on commit 1638606

Please # to comment.