(solved) addition to c_cpp_properties.json includePath not working
Posted: Mon Sep 13, 2021 5:22 pm
Hi all -
I added a line to my properties file :
But I still get this error:
when I try to build.
What am I doing wrong?
Thanks...
I added a line to my properties file :
Code: Select all
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "/home/mzimmers/.espressif/tools/xtensa-esp32-elf/esp-2020r3-8.4.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"includePath": [
"/home/mzimmers/wiced/sdk/WICED-SDK-2.4.1/Wiced/WWD/include"
Code: Select all
In file included from ../main/i2d_app.h:16,
from ../main/i2d_app.c:28:
../main/wiced_structs.h:13:10: fatal error: wwd_constants.h: No such file or directory
#include "wwd_constants.h"
Code: Select all
#include "wwd_constants.h" // this doesn't work.
#include "/home/mzimmers/wiced/sdk/WICED-SDK-2.4.1/Wiced/WWD/include/wwd_constants.h" // this works.
Thanks...