Add vscode config

This commit is contained in:
Gabriel Augendre 2022-03-07 17:04:15 +01:00
parent 5c176527c6
commit 4eca934e14
3 changed files with 112 additions and 0 deletions

View file

@ -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
}

10
fastest_presser/.vscode/extensions.json vendored Normal file
View file

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

44
fastest_presser/.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": "/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"
}
]
}