Updated VSCode project files

This commit is contained in:
erwin
2023-07-23 21:29:19 +02:00
parent cdf58702e4
commit 788002c77b
3 changed files with 123 additions and 0 deletions

44
code/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,44 @@
// 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": [
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug",
"executable": "/home/erwin/3axis-design/repositories/projects/laserhead-distance-sensor/code/.pio/build/ATmega328/firmware.elf",
"projectEnvName": "ATmega328",
"toolchainBinDir": "/home/erwin/.platformio/packages/toolchain-atmelavr/bin",
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
}
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "/home/erwin/3axis-design/repositories/projects/laserhead-distance-sensor/code/.pio/build/ATmega328/firmware.elf",
"projectEnvName": "ATmega328",
"toolchainBinDir": "/home/erwin/.platformio/packages/toolchain-atmelavr/bin",
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (without uploading)",
"executable": "/home/erwin/3axis-design/repositories/projects/laserhead-distance-sensor/code/.pio/build/ATmega328/firmware.elf",
"projectEnvName": "ATmega328",
"toolchainBinDir": "/home/erwin/.platformio/packages/toolchain-atmelavr/bin",
"internalConsoleOptions": "openOnSessionStart",
"loadMode": "manual"
}
]
}