Files
RTS10_verslagen/report-3/rts10_rust/.vscode/launch.json
2025-10-28 18:44:39 +01:00

34 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
/* Configuration for the STM32F303 Discovery board */
"type": "cortex-debug",
"request": "launch",
"name": "Debug (OpenOCD)",
"servertype": "openocd",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Cargo Build (debug)",
"runToEntryPoint": "main",
"executable": "./target/thumbv7em-none-eabihf/debug/rts10_rust",
"device": "STM32F411VET6",
"configFiles": [
"interface/stlink.cfg",
"target/stm32f4x.cfg"
],
"svdFile": "${workspaceRoot}/.vscode/stm32f411.svd",
"postLaunchCommands": [
"monitor arm semihosting enable"
],
"swoConfig": {
"enabled": true,
"cpuFrequency": 8000000,
"swoFrequency": 2000000,
"source": "probe",
"decoders": [
{ "type": "console", "label": "Hello", "port": 0 }
]
}
}
]
}