firmware in v1 verschoben

This commit is contained in:
LinoSchmidt
2022-01-08 22:41:41 +01:00
parent 9c9b749c2e
commit c0ab45a792
14 changed files with 110 additions and 2 deletions

44
Firmware V1.0/.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": "d:/Projects/RoboterArm/.pio/build/leonardo/firmware.elf",
"projectEnvName": "leonardo",
"toolchainBinDir": "C:/Users/linos/.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": "d:/Projects/RoboterArm/.pio/build/leonardo/firmware.elf",
"projectEnvName": "leonardo",
"toolchainBinDir": "C:/Users/linos/.platformio/packages/toolchain-atmelavr/bin",
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (without uploading)",
"executable": "d:/Projects/RoboterArm/.pio/build/leonardo/firmware.elf",
"projectEnvName": "leonardo",
"toolchainBinDir": "C:/Users/linos/.platformio/packages/toolchain-atmelavr/bin",
"internalConsoleOptions": "openOnSessionStart",
"loadMode": "manual"
}
]
}