| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug RT-Thread",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/rtthread.elf",
- "args": [],
- "stopAtEntry": true,
- "cwd": "${workspaceRoot}",
- "environment": [],
- "externalConsole": true,
- "miDebuggerServerAddress": "localhost:1234",
- "serverLaunchTimeout": 2000,
- "targetArchitecture": "ARM",
- "setupCommands": [
- {
- "text": "cd ${workspaceRoot}"
- },
- {
- "text": "file rtthread.elf"
- }
- ],
- "customLaunchSetupCommands": [],
- "launchCompleteCommand": "exec-run",
- "osx": {
- "MIMode": "gdb",
- "miDebuggerPath": "arm-none-eabi-gdb"
- },
- "linux": {
- "MIMode": "gdb",
- "miDebuggerPath": "gdb-multiarch"
- },
- "windows": {
- "MIMode": "gdb",
- "miDebuggerPath": "arm-none-eabi-gdb.exe"
- }
- }
- ]
- }
|