Subversion Repositories CharLCD

Rev

Go to most recent revision | Details | 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",
10
            "name": "JTAG 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": "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,
30
        }
31
    ]
32
}