2022-08-03 19:32:31 +03:00
|
|
|
{
|
|
|
|
|
"workbench.tree.indent": 12,
|
|
|
|
|
"cortex-debug.enableTelemetry": false,
|
|
|
|
|
"cortex-debug.variableUseNaturalFormat": true,
|
2024-02-14 07:05:59 +04:00
|
|
|
"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",
|
2022-08-03 19:32:31 +03:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"files.associations": {
|
|
|
|
|
"*.scons": "python",
|
|
|
|
|
"SConscript": "python",
|
|
|
|
|
"SConstruct": "python",
|
2024-03-29 05:47:43 +04:00
|
|
|
"*.fam": "python"
|
2023-08-15 22:23:09 -03:00
|
|
|
},
|
2025-02-19 23:32:20 +00:00
|
|
|
"clangd.checkUpdates": false,
|
2024-07-30 05:30:25 +03:00
|
|
|
"clangd.path": "${workspaceFolder}/toolchain/current/bin/clangd@FBT_PLATFORM_EXECUTABLE_EXT@",
|
2023-08-15 22:23:09 -03:00
|
|
|
"clangd.arguments": [
|
2024-07-15 04:56:21 +03:00
|
|
|
"--query-driver=**/arm-none-eabi-*",
|
2024-06-01 16:20:51 +04:00
|
|
|
"--compile-commands-dir=${workspaceFolder}/build/latest",
|
|
|
|
|
"--clang-tidy",
|
|
|
|
|
"--header-insertion=never"
|
2025-10-08 13:13:36 +02:00
|
|
|
],
|
|
|
|
|
"files.watcherExclude": {
|
|
|
|
|
"**/.git/objects/**": true,
|
|
|
|
|
"**/.git/**/modules/**/objects/**": true,
|
|
|
|
|
"**/.git/**/subtree-cache/**": true,
|
|
|
|
|
"**/.git/**/rr-cache/**": true,
|
|
|
|
|
"build/**": true,
|
|
|
|
|
"toolchain/**": true
|
|
|
|
|
}
|
2023-08-15 22:23:09 -03:00
|
|
|
}
|