
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "cwd": "${workspaceFolder}",
            "executable": "${workspaceRoot}\\build\\CharLCD.elf",
            "name": "JTAG DEBUGGING ",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "openocd",
             "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe",
            "armToolchainPath": "${config:arm-none-eabi.bin}",
            "interface": "swd",
            "svdFile": "${workspaceRoot}\\stm32f103.svd",
            "runToEntryPoint": "main",
            "configFiles": [
                "interface\\stlink.cfg",
                "target\\stm32f1x.cfg"
            ],
            "debuggerArgs": [],
            "preRestartCommands": [
                "load",
                "enable breakpoint",
                "monitor reset"
            ],
            "showDevDebugOutput": true,
        }
    ]
}