-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlaunch.json
More file actions
23 lines (23 loc) · 693 Bytes
/
launch.json
File metadata and controls
23 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"version": "0.2.0",
"configurations": [
{
"type": "probe-rs-debug",
"request": "launch",
"name": "Run with probe-rs",
"speed": 10000,
"preLaunchTask": "Cargo Build (release)",
"flashingConfig": {
"flashingEnabled": true,
},
"chip": "RP2040",
"coreConfigs": [
{
// Change this to the binary you want to debug
"programBinary": "${workspaceFolder}/target/thumbv8m.main-none-eabihf/release/neotron-pico-bios",
"rttEnabled": true
}
],
}
]
}