LCD_QSPIBoot/.vscode/launch.json

26 lines
717 B
JSON
Raw Normal View History

2025-05-21 15:35:29 +08:00
{
//测试会debug,已废弃直接Preferences: Open Keyboard Shortcuts (JSON) 绑定F5快捷键
/*
{
"key": "f5",
"command": "workbench.action.tasks.runTask",
"args": "pyocd-flash",
"when": "editorTextFocus"
}
*/
"version": "0.0.1",
"configurations": [
{
"cwd": "${workspaceFolder}",
"executable": "${workspaceFolder}/EWARM/debug/Exe/bootloader.hex",
"name": "only download",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"showDevDebugOutput": "none",
"servertype": "pyocd",
"preLaunchTask": "pyocd-flash",
"device": "STM32L431RCTx", // 根据芯片型号调整
},
]
}