Files
Stm32F10xTmp/.vscode/launch.json
T
2026-07-05 18:07:31 +08:00

17 lines
470 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cortex-debug",
"request": "launch",
"name": "Debug: JLINK",
"servertype": "jlink",
"interface": "swd",
"executable": "Output/Debug/Stm32F10xTmp.elf",
"runToEntryPoint": "main",
"device": "STM32F103ZE",
"toolchainPrefix": "arm-none-eabi"
}
]
}