forked from Lotlab/nrf52-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
71 lines (71 loc) · 2.52 KB
/
launch.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}/keyboard/lot60-ble/rev_c/_build/",
"executable": "nrf52_kbd.out",
"name": "Debug Microcontroller",
"request": "launch",
"type": "cortex-debug",
"servertype": "pyocd",
"armToolchainPath": "/usr/local/gcc-arm-none-eabi-7-2018-q2-update/bin",
"device": "nrf52_kbd",
"targetId": "nrf52",
"boardId": ""
},
{
"cwd": "${workspaceRoot}/keyboard/ergoconn/right/_build/",
"executable": "nrf52_kbd.out",
"name": "ErgoConn",
"request": "launch",
"type": "cortex-debug",
"servertype": "pyocd",
"armToolchainPath": "/usr/local/gcc-arm-none-eabi-7-2018-q2-update/bin",
"device": "nrf52_kbd",
"targetId": "nrf52",
},
{
"cwd": "${workspaceRoot}/keyboard/lkb-core/_build/",
"executable": "nrf52_kbd.out",
"name": "LKB-Core",
"request": "launch",
"type": "cortex-debug",
"servertype": "pyocd",
"armToolchainPath": "/usr/local/gcc-arm-none-eabi-7-2018-q2-update/bin",
"device": "nrf52_kbd",
"targetId": "nrf52",
},
{
"name": "Debug Application",
"type": "gdb",
"request": "attach",
"target": ":3333",
"remote": true,
"cwd": "${workspaceRoot}/keyboard/lot60-ble/rev_c/_build/",
"executable": "nrf52_kbd.out",
"valuesFormatting": "parseText",
"autorun": [
"file nrf52_kbd.out",
"mon reset"
],
"gdbpath": "/usr/local/gcc-arm-none-eabi-7-2018-q2-update/bin/arm-none-eabi-gdb",
},
{
"type": "gdb",
"request": "attach",
"target": "127.0.0.1:3333",
"remote": true,
"name": "ErgoConn (EXT)",
"cwd": "${workspaceRoot}/keyboard/ergoconn/_build",
"executable": "nrf52_kbd.out",
"autorun": [
"file nrf52_kbd.out",
"mon reset"
],
"gdbpath": "/usr/local/gcc-arm-none-eabi-7-2018-q2-update/bin/arm-none-eabi-gdb",
},
]
}