-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.txt
30 lines (29 loc) · 901 Bytes
/
text.txt
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
{
"version": "0.4.2",
"configurations": [
{
"name": "Debug gdb",
"type": "gdb",
//"request": "attach",
"request": "launch",
"executable": "${workspaceRoot}/bin/debug.elf",
"target": "bin/debug.elf",
// "target": "localhost:3333",
"cwd": "${workspaceRoot}",
"gdbpath": "/usr/bin/arm-none-eabi-gdb",
"remote": true,
"preLaunchTask": "Debug",
"showDevDebugOutput": true,
"autorun": [
"target extended-remote localhost:3333",
"monitor halt",
"monitor reset halt",
"file bin/debug.elf",
"load bin/debug.elf",
// "tbreak main",
// "monitor reset",
//"monitor halt",
]
}
]
}