Skip to content

Commit e855b53

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

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

tools/mcconfig/make.esp32.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ 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/lwip/src/include \
65+
$(IDF_PATH)/components/lwip/port/esp32/include \
66+
$(IDF_PATH)/components/lwip/port/esp32/include/arch \
6667
$(IDF_PATH)/components/mbedtls/include \
6768
$(IDF_PATH)/components/spi_flash/include \
6869
$(IDF_PATH)/components/vfs/include \

tools/mcconfig/nmake.esp32.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ 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\lwip\src\include \
78+
-I$(IDF_PATH)\components\lwip\port\esp32\include \
79+
-I$(IDF_PATH)\components\lwip\port\esp32\include\arch \
7980
-I$(IDF_PATH)\components\mbedtls\include \
8081
-I$(IDF_PATH)\components\spi_flash\include \
8182
-I$(IDF_PATH)\components\vfs\include \

0 commit comments

Comments
 (0)