Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2 | Rev 3 | ||
|---|---|---|---|
| Line 5... | Line 5... | ||
| 5 | "version": "0.2.0", |
5 | "version": "0.2.0", |
| 6 | "configurations": [ |
6 | "configurations": [ |
| 7 | { |
7 | { |
| 8 | "cwd": "${workspaceFolder}", |
8 | "cwd": "${workspaceFolder}", |
| 9 | "executable": "${workspaceRoot}\\build\\CharLCD.elf", |
9 | "executable": "${workspaceRoot}\\build\\CharLCD.elf", |
| 10 | "name": "JTAG DEBUGGING ", |
10 | "name": "STLINK DEBUGGING ", |
| 11 | "request": "launch", |
11 | "request": "launch", |
| 12 | "type": "cortex-debug", |
12 | "type": "cortex-debug", |
| 13 | "servertype": "openocd", |
13 | "servertype": "openocd", |
| 14 | "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe", |
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}", |
15 | "armToolchainPath": "${config:arm-none-eabi.bin}", |
| Line 21... | Line 21... | ||
| 21 | "target\\stm32f1x.cfg" |
21 | "target\\stm32f1x.cfg" |
| 22 | ], |
22 | ], |
| 23 | "debuggerArgs": [], |
23 | "debuggerArgs": [], |
| 24 | "preRestartCommands": [ |
24 | "preRestartCommands": [ |
| 25 | "load", |
25 | "load", |
| - | 26 | "enable breakpoint", |
|
| - | 27 | "monitor reset" |
|
| - | 28 | ], |
|
| - | 29 | "showDevDebugOutput": true, |
|
| - | 30 | }, |
|
| - | 31 | ||
| - | 32 | { |
|
| - | 33 | "cwd": "${workspaceFolder}", |
|
| - | 34 | "executable": "${workspaceRoot}\\build\\CharLCD.elf", |
|
| - | 35 | "name": "CMSIS DAP DEBUGGING ", |
|
| - | 36 | "request": "launch", |
|
| - | 37 | "type": "cortex-debug", |
|
| - | 38 | "servertype": "openocd", |
|
| - | 39 | "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@xpack-dev-tools\\openocd\\0.11.0-5.1\\.content\\bin\\openocd.exe", |
|
| - | 40 | "armToolchainPath": "${config:arm-none-eabi.bin}", |
|
| - | 41 | "interface": "swd", |
|
| - | 42 | "svdFile": "${workspaceRoot}\\stm32f103.svd", |
|
| - | 43 | "runToEntryPoint": "main", |
|
| - | 44 | "configFiles": [ |
|
| - | 45 | "${workspaceRoot}\\cmsis.cfg", |
|
| - | 46 | "target\\stm32f1x.cfg" |
|
| - | 47 | ], |
|
| - | 48 | "debuggerArgs": [], |
|
| - | 49 | "preRestartCommands": [ |
|
| - | 50 | "load", |
|
| 26 | "enable breakpoint", |
51 | "enable breakpoint", |
| 27 | "monitor reset" |
52 | "monitor reset" |
| 28 | ], |
53 | ], |
| 29 | "showDevDebugOutput": true, |
54 | "showDevDebugOutput": true, |
| 30 | } |
55 | } |