wideband/.vscode/launch.json

30 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-11 16:30:31 -08:00
{
"version": "0.2.0",
"configurations": [
{
2020-12-08 23:40:54 -08:00
"name": "Debug F042 (firmware)",
2020-11-11 16:30:31 -08:00
"type": "cortex-debug",
"request": "launch",
"cwd": "${workspaceFolder}",
"executable": "${workspaceRoot}/firmware/build/wideband.elf",
"device": "STM32F042K6",
"v1": false,
"svdFile": "${workspaceRoot}/firmware/cmsis-svd/data/STMicro/STM32F042x.svd",
"servertype": "openocd",
2020-12-08 23:40:54 -08:00
"configFiles": ["interface/stlink-v2.cfg", "target/stm32f0x.cfg"]
},
{
"name": "Debug F042 (bootloader)",
"type": "cortex-debug",
"request": "launch",
"cwd": "${workspaceFolder}",
"executable": "${workspaceRoot}/firmware/bootloader/build/wideband_bootloader.elf",
"device": "STM32F042K6",
"v1": false,
"svdFile": "${workspaceRoot}/firmware/cmsis-svd/data/STMicro/STM32F042x.svd",
"servertype": "openocd",
"configFiles": ["interface/stlink-v2.cfg", "target/stm32f0x.cfg"]
2020-11-11 16:30:31 -08:00
}
]
}