-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathlaunch.json
More file actions
31 lines (31 loc) · 1.11 KB
/
launch.json
File metadata and controls
31 lines (31 loc) · 1.11 KB
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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
// "preLaunchTask": "${defaultBuildTask}",
"type": "probe-rs-debug",
"request": "launch",
"flashingConfig": {
"flashingEnabled": false,
"resetAfterFlashing": true,
"haltAfterReset": true,
},
"connectUnderReset": true,
"runtimeExecutable": "/home/ryan/.cargo/bin/probe-rs-debugger",
// "consoleLogLevel": "Trace",
"name": "probe_rs Executable Test",
"chip": "esp32c3", //!MODIFY
"wireProtocol": "Jtag",
"cwd": "${workspaceFolder}",
"coreConfigs": [
{
"programBinary": "${workspaceFolder}/target/riscv32imc-unknown-none-elf/debug/firmware", //!MODIFY
"rttEnabled": true,
}
]
}
]
}