-
Notifications
You must be signed in to change notification settings - Fork 281
J Link Specific Configuration
Zhu Chuang edited this page Sep 17, 2020
·
9 revisions
{
"version": "0.2.0",
"configurations": [
{
"type": "cortex-debug",
"request": "launch",
"servertype": "jlink",
"cwd": "${workspaceRoot}",
"executable": "./firmware.elf",
"name": "Debug (J-Link)",
"device": "STM32F103RB",
"interface": "swd",
"ipAddress": null,
"serialNumber": null,
}
]
}Model number of your microcontroller.
If your J-Link probe is connected via Ethernet instead of USB you need to supply the IP Address for the probe in this configuration parameter.
If you have multiple J-Link probes connected via USB then you can supply the serial number for the J-Link probe to use. If only one J-Link probe is connected this option can be omitted.
Select the debug connection type to your microcontroller. This can be either "swd" (the default) or "jtag".