all IDF header files are found, except the files in ~\esp\esp-idf\components\lwip\include
Posted: Wed Jul 31, 2019 3:12 pm
I added a line to my list of include files:
The added line fails with `fatal error: apps/dhcpserver/dhcpserver.h: No such file or directory`.
The file exist, and Eclipse finds it correctly (no additional configuration was necessary), at:
I'm stumped, as the other includes are found, and I see no reason for this file to be different (it is a part of the same IDF).
This is on a recent IDF4.0.
As said, I'm stumped and this is a blocker right now, as googling didn't result in addressing the real issue (all other files work, only this file doesn't).
It seems I can't get to any file in the `C:\msys32\home\user\esp\esp-idf\components\lwip\include` folder. Now why is that, given this is a part of the IDF and other files in it are found?? Something broke in the IDF? How do I resolve this?
Code: Select all
#include "wifi-task.h"
#include "esp_event_loop.h"
#include "esp_wifi.h"
#include "tcpip_adapter.h"
#include "lwip/ip4_addr.h"
#include "apps/dhcpserver/dhcpserver.h" // <== added
The file exist, and Eclipse finds it correctly (no additional configuration was necessary), at:
Code: Select all
~\esp\esp-idf\components\lwip\include\apps\dhcpserver\dchpserver.h
This is on a recent IDF4.0.
As said, I'm stumped and this is a blocker right now, as googling didn't result in addressing the real issue (all other files work, only this file doesn't).
It seems I can't get to any file in the `C:\msys32\home\user\esp\esp-idf\components\lwip\include` folder. Now why is that, given this is a part of the IDF and other files in it are found?? Something broke in the IDF? How do I resolve this?