We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6192775 commit dec4babCopy full SHA for dec4bab
1 file changed
.vscode/launch.json
@@ -40,7 +40,25 @@
40
"break main",
41
"continue"
42
]
43
+ },
44
+ {
45
+ "cwd": "${workspaceRoot}",
46
+ // TODO: find better way to get latest build filename
47
+ "executable": "./build/src/pinetime-app-1.3.0.out",
48
+ "name": "Debug OpenOCD ST-LINK pinetime-app-1.3.0.out",
49
+ "request": "launch",
50
+ "type": "cortex-debug",
51
+ "showDevDebugOutput": false,
52
+ "servertype": "openocd",
53
+ "runToMain": true,
54
+ // Only use armToolchainPath if your arm-none-eabi-gdb is not in your path (some GCC packages does not contain arm-none-eabi-gdb)
55
+ "armToolchainPath": "${workspaceRoot}/../gcc-arm-none-eabi-9-2020-q2-update/bin",
56
+ "svdFile": "${workspaceRoot}/nrf52.svd",
57
+ "configFiles": [
58
+ "interface/stlink.cfg",
59
+ "target/nrf52.cfg"
60
+ ],
61
}
62
63
-}
64
+}
0 commit comments