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 f10556a commit 5235b9bCopy full SHA for 5235b9b
.vscode/launch.json
@@ -0,0 +1,22 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ "name": "(attach) micro:bit OpenOCD",
5
+ "cwd": "${workspaceFolder}",
6
+ "executable": "built/codal/build/MICROBIT",
7
+ "request": "attach",
8
+ "type": "cortex-debug",
9
+ "servertype": "openocd",
10
+ "configFiles": [
11
+ "interface/cmsis-dap.cfg",
12
+ "target/nrf52.cfg"
13
+ ],
14
+ "interface": "swd",
15
+ "svdFile": "built/codal/libraries/codal-nrf52/nrfx/mdk/nrf52833.svd",
16
+ "preAttachCommands": [],
17
+ "openOCDLaunchCommands": [
18
+ "adapter speed 8000"
19
+ ]
20
+ }
21
22
+}
0 commit comments