Skip to content

Commit 8e7455b

Browse files
committed
fix lwip include paths for updated esp-idf
1 parent 51f0796 commit 8e7455b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

tools/mcconfig/make.esp32.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,10 @@ INC_DIRS = \
6161
$(IDF_PATH)/components/freertos \
6262
$(IDF_PATH)/components/freertos/include \
6363
$(IDF_PATH)/components/freertos/include/freertos \
64-
$(IDF_PATH)/components/lwip/include/lwip \
65-
$(IDF_PATH)/components/lwip/include/lwip/port \
64+
$(IDF_PATH)/components/lwip/include/apps \
65+
$(IDF_PATH)/components/lwip/lwip/src/include \
66+
$(IDF_PATH)/components/lwip/port/esp32/include \
67+
$(IDF_PATH)/components/lwip/port/esp32/include/arch \
6668
$(IDF_PATH)/components/mbedtls/include \
6769
$(IDF_PATH)/components/spi_flash/include \
6870
$(IDF_PATH)/components/vfs/include \

tools/mcconfig/nmake.esp32.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ INC_DIRS = \
7474
-I$(IDF_PATH)\components\freertos \
7575
-I$(IDF_PATH)\components\freertos\include \
7676
-I$(IDF_PATH)\components\freertos\include\freertos \
77-
-I$(IDF_PATH)\components\lwip\include\lwip \
78-
-I$(IDF_PATH)\components\lwip\include\lwip\port \
77+
-I$(IDF_PATH)\components\lwip\include\apps \
78+
-I$(IDF_PATH)\components\lwip\lwip\src\include \
79+
-I$(IDF_PATH)\components\lwip\port\esp32\include \
80+
-I$(IDF_PATH)\components\lwip\port\esp32\include\arch \
7981
-I$(IDF_PATH)\components\mbedtls\include \
8082
-I$(IDF_PATH)\components\spi_flash\include \
8183
-I$(IDF_PATH)\components\vfs\include \

0 commit comments

Comments
 (0)