LCD_QSPIBoot/.vscode/launch.json
2025-05-21 15:35:29 +08:00

26 lines
717 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
//测试会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", // 根据芯片型号调整
},
]
}