解决ESP-IDF工程里面C/C++找不到路径标红的问题
教程
源文件
打开这一个文件
{
"configurations": [
{
"name": "ESP-IDF",
"cStandard": "c11",
"cppStandard": "c++17",
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
"compilerPath": "${config:idf.toolsPath}\\tools\\riscv32-esp-elf\\esp-12.2.0_20230208\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe"
}
],
"version": 4
}
使用这一个配置
原理
使用编译过程中cmake产生的路径配置文件替代默认的配置
这一个文件需要在选择芯片以后才可以生成