2022-08-03 16:32:31 +00:00
|
|
|
{
|
|
|
|
"C_Cpp.default.cStandard": "gnu17",
|
|
|
|
"C_Cpp.default.cppStandard": "c++17",
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
"workbench.tree.indent": 12,
|
|
|
|
"cortex-debug.enableTelemetry": false,
|
|
|
|
"cortex-debug.variableUseNaturalFormat": true,
|
|
|
|
"cortex-debug.showRTOS": true,
|
2022-10-25 22:15:02 +00:00
|
|
|
"cortex-debug.armToolchainPath.windows": "${workspaceFolder}/toolchain/x86_64-windows/bin",
|
2022-08-03 16:32:31 +00:00
|
|
|
"cortex-debug.armToolchainPath.linux": "${workspaceFolder}/toolchain/x86_64-linux/bin",
|
|
|
|
"cortex-debug.armToolchainPath.osx": "${workspaceFolder}/toolchain/x86_64-darwin/bin",
|
2022-10-25 22:15:02 +00:00
|
|
|
"cortex-debug.openocdPath.windows": "${workspaceFolder}/toolchain/x86_64-windows/openocd/bin/openocd.exe",
|
2022-08-03 16:32:31 +00:00
|
|
|
"cortex-debug.openocdPath.linux": "${workspaceFolder}/toolchain/x86_64-linux/openocd/bin/openocd",
|
|
|
|
"cortex-debug.openocdPath.osx": "${workspaceFolder}/toolchain/x86_64-darwin/openocd/bin/openocd",
|
2022-10-25 22:15:02 +00:00
|
|
|
"cortex-debug.gdbPath.windows": "${workspaceFolder}/toolchain/x86_64-windows/bin/arm-none-eabi-gdb-py.bat",
|
2022-09-14 16:11:38 +00:00
|
|
|
"cortex-debug.gdbPath.linux": "${workspaceFolder}/toolchain/x86_64-linux/bin/arm-none-eabi-gdb-py",
|
2022-09-15 13:40:26 +00:00
|
|
|
"cortex-debug.gdbPath.osx": "${workspaceFolder}/toolchain/x86_64-darwin/bin/arm-none-eabi-gdb-py",
|
2022-08-03 16:32:31 +00:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"files.associations": {
|
|
|
|
"*.scons": "python",
|
|
|
|
"SConscript": "python",
|
|
|
|
"SConstruct": "python",
|
|
|
|
"*.fam": "python",
|
|
|
|
}
|
2022-09-19 16:43:53 +00:00
|
|
|
}
|