Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
33 | mjames | 1 | { |
2 | // Use IntelliSense to learn about possible attributes. |
||
3 | // Hover to view descriptions of existing attributes. |
||
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
||
5 | "version": "0.2.0", |
||
6 | "configurations": [ |
||
7 | |||
8 | { |
||
9 | "cwd": "${workspaceFolder}", |
||
10 | "executable": "${workspaceRoot}\\build\\DashGPS.elf", |
||
11 | "name": "CMSIS-DAP DEBUGGING ", |
||
12 | "request": "launch", |
||
13 | "type": "cortex-debug", |
||
14 | "servertype": "openocd", |
||
15 | "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe", |
||
16 | "armToolchainPath": "${config:arm-none-eabi.bin}", |
||
17 | "interface": "cmsis-dap", |
||
18 | "svdFile": "${workspaceRoot}\\stm32f030.svd", |
||
19 | "runToEntryPoint": "main", |
||
20 | "configFiles": [ |
||
21 | "interface\\cmsis-dap.cfg", |
||
22 | "target\\stm32f1x.cfg" |
||
23 | ], |
||
24 | "debuggerArgs": [], |
||
25 | "preRestartCommands": [ |
||
26 | "load", |
||
27 | "enable breakpoint", |
||
28 | "monitor reset" |
||
29 | ], |
||
30 | "showDevDebugOutput": true, |
||
31 | } |
||
32 | |||
33 | ] |
||
34 | } |