mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
7fc4ba7c1c
* FBT/uFBT: ms-vscode.cpptools can't be a configuration provider to itself * FBT/uFBT: Enable C++20/C23 in IntelliSense as the compilation options do
24 lines
No EOL
957 B
JSON
24 lines
No EOL
957 B
JSON
{
|
|
"C_Cpp.default.cStandard": "gnu23",
|
|
"C_Cpp.default.cppStandard": "c++20",
|
|
"python.formatting.provider": "black",
|
|
"workbench.tree.indent": 12,
|
|
"cortex-debug.enableTelemetry": false,
|
|
"cortex-debug.variableUseNaturalFormat": true,
|
|
"cortex-debug.showRTOS": true,
|
|
"cortex-debug.armToolchainPath": "${workspaceFolder}/toolchain/current/bin",
|
|
"cortex-debug.openocdPath": "${workspaceFolder}/toolchain/current/bin/openocd",
|
|
"cortex-debug.gdbPath": "${workspaceFolder}/toolchain/current/bin/arm-none-eabi-gdb-py3",
|
|
"editor.formatOnSave": true,
|
|
"files.associations": {
|
|
"*.scons": "python",
|
|
"SConscript": "python",
|
|
"SConstruct": "python",
|
|
"*.fam": "python",
|
|
},
|
|
"clangd.arguments": [
|
|
// We might be able to tighten this a bit more to only include the correct toolchain.
|
|
"--query-driver=**",
|
|
"--compile-commands-dir=${workspaceFolder}/build/latest"
|
|
]
|
|
} |