1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 15:17:23 +00:00
Lander-Embedded/.vscode/launch.json
2021-10-28 20:44:23 -07:00

66 lines
2.4 KiB
JSON

// AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY
//
// PIO Unified Debugger
//
// Documentation: https://docs.platformio.org/page/plus/debugging.html
// Configuration: https://docs.platformio.org/page/projectconf/section_env_debug.html
{
"version": "0.2.0",
"configurations": [
{
"name": "g++ - Build and debug simulation",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/main.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "buildSim"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug",
"executable": "C:/Coding/lander-cpp/.pio/build/teensy41/firmware.elf",
"projectEnvName": "teensy41",
"toolchainBinDir": "C:/Users/anson/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
}
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "C:/Coding/lander-cpp/.pio/build/teensy41/firmware.elf",
"projectEnvName": "teensy41",
"toolchainBinDir": "C:/Users/anson/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (without uploading)",
"executable": "C:/Coding/lander-cpp/.pio/build/teensy41/firmware.elf",
"projectEnvName": "teensy41",
"toolchainBinDir": "C:/Users/anson/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart",
"loadMode": "manual"
}
]
}