1234567891011121314151617181920212223 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug @ Windows",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}\\rtthread.elf",
- "args": [],
- "stopAtEntry": true,
- "cwd": "${workspaceRoot}",
- "environment": [],
- "externalConsole": true,
- "miDebuggerServerAddress": "localhost:1234",
- "serverLaunchTimeout": 2000,
- "targetArchitecture": "ARM",
- "MIMode": "gdb",
- "miDebuggerPath": "arm-none-eabi-gdb.exe",
- "customLaunchSetupCommands": [],
- "launchCompleteCommand": "exec-run",
- },
- ]
- }
|