From f8c740c1900508e2bcdd5160ef15a57d4b6370b3 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Sun, 11 Aug 2019 13:17:44 +0200 Subject: [PATCH] cpu/esp32: use SDK crypto headers from vendor code Changes the include path for ESP32 SDK crypto function headers to find their modified version in vendor codefirst. --- cpu/esp32/vendor/esp-idf/esp32/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/esp32/vendor/esp-idf/esp32/Makefile b/cpu/esp32/vendor/esp-idf/esp32/Makefile index c31048fb5b..ea2b0844a8 100644 --- a/cpu/esp32/vendor/esp-idf/esp32/Makefile +++ b/cpu/esp32/vendor/esp-idf/esp32/Makefile @@ -3,6 +3,7 @@ MODULE=esp_idf_esp32 include $(RIOTBASE)/Makefile.base INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/include/log +INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/wpa_supplicant/include INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/wpa_supplicant/port/include INCLUDES += -I$(ESP32_SDK_DIR)/components/esp32 INCLUDES += -I$(ESP32_SDK_DIR)/components/esp32/include @@ -10,5 +11,4 @@ INCLUDES += -I$(ESP32_SDK_DIR)/components/nvs_flash/include INCLUDES += -I$(ESP32_SDK_DIR)/components/soc/esp32/include INCLUDES += -I$(ESP32_SDK_DIR)/components/smartconfig_ack/include INCLUDES += -I$(ESP32_SDK_DIR)/components/wpa_supplicant/include -INCLUDES += -I$(ESP32_SDK_DIR)/components/wpa_supplicant/include/crypto INCLUDES += -I$(ESP32_SDK_DIR)/components/wpa_supplicant/port/include