// 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" } ] }