|
@@ -2,24 +2,24 @@
|
|
|
// 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"
|
|
|
+ "cmake.options.statusBarVisibility": "compact",
|
|
|
+ "cmake.options.advanced": {
|
|
|
+ "buildPreset": {},
|
|
|
+ "build": {
|
|
|
+ "statusBarVisibility": "inherit",
|
|
|
+ "inheritDefault": "visible"
|
|
|
},
|
|
|
"launch": {
|
|
|
- "visibility": "hidden"
|
|
|
+ "statusBarVisibility": "hidden",
|
|
|
+ "inheritDefault": "hidden"
|
|
|
},
|
|
|
- "build": {
|
|
|
- "visibility": "default"
|
|
|
- },
|
|
|
- "buildTarget": {
|
|
|
- "visibility": "hidden"
|
|
|
+ "debug": {
|
|
|
+ "statusBarVisibility": "hidden",
|
|
|
+ "inheritDefault": "hidden"
|
|
|
}
|
|
|
},
|
|
|
"cmake.buildBeforeRun": true,
|
|
|
"cmake.configureOnOpen": true,
|
|
|
- "cmake.statusbar.visibility": "icon",
|
|
|
"cmake.generator": "Unix Makefiles",
|
|
|
"cmake.environment": {
|
|
|
"PICO_SDK_PATH": "${workspaceFolder}/../pico-sdk"
|
|
@@ -30,5 +30,5 @@
|
|
|
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
|
|
|
"C_Cpp.default.cppStandard": "gnu++17",
|
|
|
"C_Cpp.default.cStandard": "gnu11",
|
|
|
- "cortex-debug.openocdPath": "${workspaceFolder}/../openocd/src/openocd",
|
|
|
+ "cortex-debug.openocdPath": "${workspaceFolder}/../openocd/src/openocd"
|
|
|
}
|