This commit is contained in:
2025-10-18 16:51:59 +08:00
commit 94d1a033df
3200 changed files with 540911 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"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 路径
}
]
}