launch.json 398 字节
Newer Older
Thomas_Fly's avatar
Thomas_Fly 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{
    "version": "0.2.0",
    "configurations": [
        {
            "cwd": "${workspaceRoot}",
            "executable": "rt-thread.elf",
            "name": "Debug MAX",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "jlink",
            "interface": "swd",
            "device": "NRF52840_XXAA",
            "runToMain": true
        },
    ]
}