LED_shit/.vscode/settings.json

32 lines
902 B
JSON
Raw Normal View History

2025-11-04 21:33:28 +00:00
{
"files.associations": {
"*.c": "c",
"*.h": "c"
},
2025-11-22 00:13:32 +00:00
2025-11-04 21:33:28 +00:00
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
2025-11-22 00:13:32 +00:00
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"C:/ESP/frameworks/v5.1.6/esp-idf/components/**"
],
2025-11-04 21:33:28 +00:00
"idf.espIdfPath": "C:/Users/carec/esp/v5.1.6/esp-idf",
"idf.pythonBinPath": "C:/Users/carec/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe",
"idf.toolsPath": "C:/Users/carec/.espressif/tools",
"idf.showOnboardingOnInit": false,
"idf.adapterTargetName": "esp32",
"idf.portWin": "COM3",
"idf.flashType": "UART",
2025-11-22 00:13:32 +00:00
"idf.buildDir": "${workspaceFolder}/build",
"idf.flashDir": "${workspaceFolder}/build",
2025-11-04 21:33:28 +00:00
"cmake.buildDirectory": "${workspaceFolder}/build",
"cmake.configureSettings": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}