18 lines
707 B
JSON
18 lines
707 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug GD32E230C",
|
|
"type": "cortex-debug",
|
|
"request": "launch",
|
|
"servertype": "jlink",
|
|
"device": "GD32E230C8T6", // 替换为你的具体型号
|
|
"interface": "swd",
|
|
"cwd": "${workspaceRoot}",
|
|
"executable": "${workspaceRoot}/build/Debug/GD32E230C_EVAL.elf", // 替换为你的 ELF 文件路径
|
|
"serverpath": "C:/Program Files/SEGGER/JLink_V878/JLinkGDBServerCL.exe",
|
|
"gdbPath": "C:/Program Files (x86)/GNU Arm Embedded Toolchain/10 2021.10/bin/arm-none-eabi-gdb.exe", // 替换为你的 GDB 路径
|
|
}
|
|
]
|
|
}
|