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