Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | 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 | "cwd": "${workspaceFolder}", |
||
| 9 | "executable": "${workspaceRoot}\\build\\EDIS_Ignition.elf", |
||
| 10 | "name": "CMSIS-DAP DEBUGGING ", |
||
| 11 | "request": "launch", |
||
| 12 | "type": "cortex-debug", |
||
| 13 | "servertype": "openocd", |
||
| 14 | "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe", |
||
| 15 | "armToolchainPath": "${config:arm-none-eabi.bin}", |
||
| 16 | "interface": "cmsis-dap", |
||
| 17 | "svdFile": "${workspaceRoot}\\stm32f103.svd", |
||
| 18 | "runToEntryPoint": "main", |
||
| 19 | "configFiles": [ |
||
| 20 | "interface\\cmsis-dap.cfg", |
||
| 21 | "target\\stm32f1x.cfg" |
||
| 22 | ], |
||
| 23 | "debuggerArgs": [], |
||
| 24 | "preRestartCommands": [ |
||
| 25 | "load", |
||
| 26 | "enable breakpoint", |
||
| 27 | "monitor reset" |
||
| 28 | ], |
||
| 29 | "showDevDebugOutput": true, |
||
| 21 | mjames | 30 | }, |
| 31 | { |
||
| 32 | "cwd": "${workspaceFolder}", |
||
| 33 | "executable": "${workspaceRoot}\\build\\EDIS_Ignition.elf", |
||
| 34 | "name": "JTAG DEBUGGING ", |
||
| 35 | "request": "launch", |
||
| 36 | "type": "cortex-debug", |
||
| 37 | "servertype": "openocd", |
||
| 38 | "serverpath" :"C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe", |
||
| 39 | "armToolchainPath": "${config:arm-none-eabi.bin}", |
||
| 40 | "interface": "swd", |
||
| 41 | "svdFile": "${workspaceRoot}\\stm32f103.svd", |
||
| 42 | "runToEntryPoint": "main", |
||
| 43 | "configFiles": [ |
||
| 44 | "interface\\stlink.cfg", |
||
| 45 | "target\\stm32f1x.cfg" |
||
| 46 | ], |
||
| 47 | "postLaunchCommands": [ |
||
| 48 | ], |
||
| 49 | "preRestartCommands": [ |
||
| 50 | "enable breakpoint", |
||
| 51 | "monitor reset" |
||
| 52 | ], |
||
| 53 | "showDevDebugOutput": "vscode", |
||
| 2 | mjames | 54 | } |
| 55 | ] |
||
| 56 | } |