1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
// These settings tweaks to the cmake plugin will ensure
// that you debug using cortex-debug instead of trying to launch
// a Pico binary on the host
"cmake.statusbar.advanced": {
"debug": {
"visibility": "hidden"
},
"launch": {
"visibility": "hidden"
},
"build": {
"visibility": "hidden"
},
"buildTarget": {
"visibility": "hidden"
}
},
"cmake.buildBeforeRun": true,
// This may need to be arm-none-eabi-gdb depending on your system
"cortex-debug.gdbPath": "gdb-multiarch",
"C_Cpp.errorSquiggles": "Disabled",
"files.associations": {
"cctype": "cpp",
"cmath": "cpp",
"cstdarg": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"type_traits": "cpp",
"limits": "cpp",
"*.tcc": "cpp",
"typeinfo": "cpp",
"pico.h": "c",
"config.h": "c",
"config_autogen.h": "c",
"ctime": "cpp"
}
}
|