#include "esp_spiffs.h" file not found
Posted: Tue Dec 01, 2020 2:16 pm
Hei Guys,
on compiling my project in vscode with esp-idf extension v 4.1 I get
No such file or directory error.
But the file is there.
My CPP Config is:
{
"configurations": [
{
"name": "Win32",
"cStandard": "c11",
"cppStandard": "c++17",
"includePath": [
"${config:idf.espIdfPathWin}/components/**",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${config:idf.espIdfPathWin}/components"
],
"limitSymbolsToIncludedHeaders": false
},
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}
All of the other includes I used so far are working
for example:
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_err.h>
#include "esp_log.h"
#include "driver/gpio.h"
#include "sdkconfig.h"
I'm 100% shure that this is another dump erro by myself missing any paths or options.
One Additional note: when I compile the spiffs project in it's component example everthing works fine.
Can anyone help me?
Manuel
on compiling my project in vscode with esp-idf extension v 4.1 I get
No such file or directory error.
But the file is there.
My CPP Config is:
{
"configurations": [
{
"name": "Win32",
"cStandard": "c11",
"cppStandard": "c++17",
"includePath": [
"${config:idf.espIdfPathWin}/components/**",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${config:idf.espIdfPathWin}/components"
],
"limitSymbolsToIncludedHeaders": false
},
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}
All of the other includes I used so far are working
for example:
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_err.h>
#include "esp_log.h"
#include "driver/gpio.h"
#include "sdkconfig.h"
I'm 100% shure that this is another dump erro by myself missing any paths or options.
One Additional note: when I compile the spiffs project in it's component example everthing works fine.
Can anyone help me?
Manuel