host-aprom/.vscode/settings.json

77 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-06-29 20:17:34 +00:00
{
"clangd.arguments": ["--query-driver=*arm-none-eabi-*"],
"clangd.fallbackFlags": [
2024-07-12 16:18:18 +00:00
"-IC:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/13.2 Rel1/arm-none-eabi/include",
"-IC:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/13.2 Rel1/lib/gcc/arm-none-eabi/13.2.1/include",
2024-06-29 20:17:34 +00:00
"-I${workspaceFolder}/NUC123/inc",
"-I${workspaceFolder}/NUC123/StdDriver/inc",
"-D__GNUC__",
2024-08-04 21:27:46 +00:00
"-D__XSTRING(x)=", // Workaround for string.h
2024-06-29 20:17:34 +00:00
"-Wno-pointer-to-int-cast",
2024-08-04 21:27:46 +00:00
"-Wno-int-to-pointer-cast"
2024-06-29 20:17:34 +00:00
],
2024-08-04 21:27:46 +00:00
"cortex-debug.variableUseNaturalFormat": false,
2024-06-29 20:17:34 +00:00
"cortex-debug.liveWatchRefreshRate": 1000,
"cortex-debug.enableTelemetry": false,
"files.trimFinalNewlines": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd",
2024-08-04 21:27:46 +00:00
"better-comments.tags": [
{
"tag": "===",
"color": "#00F5FF",
"strikethrough": false,
"underline": false,
"backgroundColor": "#00F5FF11",
"bold": false,
"italic": false
},
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
2024-08-15 13:54:01 +00:00
],
"python.analysis.typeCheckingMode": "basic"
2024-06-29 20:17:34 +00:00
}