Subversion Repositories CharLCD

Rev

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\\CharLCD.elf",
3 mjames 10
            "name": "STLINK DEBUGGING ",
2 mjames 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": "swd",
17
            "svdFile": "${workspaceRoot}\\stm32f103.svd",
18
            "runToEntryPoint": "main",
19
            "configFiles": [
20
                "interface\\stlink.cfg",
21
                "target\\stm32f1x.cfg"
22
            ],
23
            "debuggerArgs": [],
24
            "preRestartCommands": [
25
                "load",
26
                "enable breakpoint",
27
                "monitor reset"
28
            ],
29
            "showDevDebugOutput": true,
3 mjames 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",
51
                "enable breakpoint",
52
                "monitor reset"
53
            ],
54
            "showDevDebugOutput": true,
2 mjames 55
        }
56
    ]
57
}