VojislavM / nordic-nrf-ubuntu-dev-env

This repo is represents user guide and starting point in nRF development on the Linux Ubuntu machine.
0 stars 0 forks source link

setup7: debug #8

Open VojislavM opened 4 years ago

VojislavM commented 4 years ago

launch.json

{
    // 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": [
        {
            "name": "Cortex Debug",
            "cwd": "${workspaceRoot}",
            "executable": "${workspaceFolder}/pca10056/s140/armgcc/_build/nrf52840_xxaa.out",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "jlink",
            "device": "nrf52",
            "interface": "swd",
            "ipAddress": null,
            "serialNumber": null,
            "armToolchainPath": "${env:GNU_GCC}/bin/"
        }
    ]
}