I have an ESP-IDF project that has a problem I don’t see how to solve. Maybe I am just doing something that is unsupported.
Under the projects “main” folder I have a directory called “Hardware”. Inside that directory are some source and include files specifically related to the hardware. In one of those include files I include a include file from one of my components. The project compiles fine but whenever I open the include file under the hardware folder I get a message “Found 1 additional include directory required by the current file”. It correctly lists the directory under the components directory as needing to be included. However that directory is already included. If I go ahead and let it try to include it again it makes no difference. If I put the same include file in a file that is directly under main, it works fine, it is just if the file is in the “hardware” subdirectory that I get this problem.
Is the use of a subfolder under main just not supported or am I missing something?
Thanks,
Don