From 4eca934e148edba9cbda3468341f5f192c867376 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 7 Mar 2022 17:04:15 +0100 Subject: [PATCH] Add vscode config --- fastest_presser/.vscode/c_cpp_properties.json | 58 +++++++++++++++++++ fastest_presser/.vscode/extensions.json | 10 ++++ fastest_presser/.vscode/launch.json | 44 ++++++++++++++ 3 files changed, 112 insertions(+) create mode 100644 fastest_presser/.vscode/c_cpp_properties.json create mode 100644 fastest_presser/.vscode/extensions.json create mode 100644 fastest_presser/.vscode/launch.json diff --git a/fastest_presser/.vscode/c_cpp_properties.json b/fastest_presser/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..a7dce23 --- /dev/null +++ b/fastest_presser/.vscode/c_cpp_properties.json @@ -0,0 +1,58 @@ +// +// !!! WARNING !!! AUTO-GENERATED FILE! +// PLEASE DO NOT MODIFY IT AND USE "platformio.ini": +// https://docs.platformio.org/page/projectconf/section_env_build.html#build-flags +// +{ + "configurations": [ + { + "name": "PlatformIO", + "includePath": [ + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/include", + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/src", + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/.pio/libdeps/uno/LiquidCrystal/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/cores/arduino", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/variants/standard", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/EEPROM/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/HID/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/SPI/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/SoftwareSerial/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/Wire/src", + "" + ], + "browse": { + "limitSymbolsToIncludedHeaders": true, + "path": [ + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/include", + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/src", + "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/.pio/libdeps/uno/LiquidCrystal/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/cores/arduino", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/variants/standard", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/EEPROM/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/HID/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/SPI/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/SoftwareSerial/src", + "/Users/gaugendre/.platformio/packages/framework-arduino-avr/libraries/Wire/src", + "" + ] + }, + "defines": [ + "PLATFORMIO=50205", + "ARDUINO_AVR_UNO", + "F_CPU=16000000L", + "ARDUINO_ARCH_AVR", + "ARDUINO=10808", + "__AVR_ATmega328P__", + "" + ], + "cStandard": "c11", + "cppStandard": "c++11", + "compilerPath": "/Users/gaugendre/.platformio/packages/toolchain-atmelavr/bin/avr-gcc", + "compilerArgs": [ + "-mmcu=atmega328p", + "" + ] + } + ], + "version": 4 +} diff --git a/fastest_presser/.vscode/extensions.json b/fastest_presser/.vscode/extensions.json new file mode 100644 index 0000000..080e70d --- /dev/null +++ b/fastest_presser/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/fastest_presser/.vscode/launch.json b/fastest_presser/.vscode/launch.json new file mode 100644 index 0000000..e43d2dd --- /dev/null +++ b/fastest_presser/.vscode/launch.json @@ -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": "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/.pio/build/uno/firmware.elf", + "projectEnvName": "uno", + "toolchainBinDir": "/Users/gaugendre/.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": "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/.pio/build/uno/firmware.elf", + "projectEnvName": "uno", + "toolchainBinDir": "/Users/gaugendre/.platformio/packages/toolchain-atmelavr/bin", + "internalConsoleOptions": "openOnSessionStart" + }, + { + "type": "platformio-debug", + "request": "launch", + "name": "PIO Debug (without uploading)", + "executable": "/Users/gaugendre/Projects/arduino-toy-projects/fastest_presser/.pio/build/uno/firmware.elf", + "projectEnvName": "uno", + "toolchainBinDir": "/Users/gaugendre/.platformio/packages/toolchain-atmelavr/bin", + "internalConsoleOptions": "openOnSessionStart", + "loadMode": "manual" + } + ] +}