Files
HeavenlyHeroStar/.vscode/settings.json
T
rsgltzyd 64e207df72 fix: 更新 VSCode 设置以优化开发环境
- 合并 idf.openOcdConfigs 为单行格式
- 更新 idf.pythonInstallPath 为 idf.pythonBinPathWin
- 添加 idf.toolsPath 和 ESP_IDF_VERSION 变量
- 修改 clangd.path 以指向新的工具路径
- 更新 compile-commands-dir 路径以反映新的工作目录
2026-07-01 22:48:21 +08:00

23 lines
793 B
JSON

{
"C_Cpp.intelliSenseEngine": "default",
"idf.extensionActivationMode": "always",
"idf.openOcdConfigs": ["board/esp32s3-builtin.cfg"],
"idf.port": "/dev/ttyACM0",
"idf.currentSetup": "C:\\esp\\v6.0.1\\esp-idf",
"idf.toolsPath": "C:\\Espressif",
"idf.pythonBinPathWin": "C:\\Espressif\\tools\\python\\v6.0.1\\venv\\Scripts\\python.exe",
"idf.customExtraVars": {
"IDF_TARGET": "esp32s3",
"IDF_TOOLS_PATH": "C:\\Espressif",
"ESP_IDF_VERSION": "6.0.1"
},
"clangd.path": "C:\\Espressif\\tools\\esp-clang\\esp-20.1.1_20250829\\esp-clang\\bin\\clangd.exe",
"clangd.arguments": [
"--background-index",
"--query-driver=**",
"--compile-commands-dir=d:\\work\\work-hardware\\HeavenlyHeroStar\\build"
],
"idf.flashType": "UART",
"idf.portWin": "COM5"
}