Add vscode config
This commit is contained in:
parent
6dee9bf6b6
commit
5c176527c6
3 changed files with 112 additions and 0 deletions
58
super_simon/.vscode/c_cpp_properties.json
vendored
Normal file
58
super_simon/.vscode/c_cpp_properties.json
vendored
Normal 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/super_simon/include",
|
||||
"/Users/gaugendre/Projects/arduino-toy-projects/super_simon/src",
|
||||
"/Users/gaugendre/Projects/arduino-toy-projects/super_simon/.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/super_simon/include",
|
||||
"/Users/gaugendre/Projects/arduino-toy-projects/super_simon/src",
|
||||
"/Users/gaugendre/Projects/arduino-toy-projects/super_simon/.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
super_simon/.vscode/extensions.json
vendored
Normal file
10
super_simon/.vscode/extensions.json
vendored
Normal 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
super_simon/.vscode/launch.json
vendored
Normal file
44
super_simon/.vscode/launch.json
vendored
Normal 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/super_simon/.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/super_simon/.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/super_simon/.pio/build/uno/firmware.elf",
|
||||
"projectEnvName": "uno",
|
||||
"toolchainBinDir": "/Users/gaugendre/.platformio/packages/toolchain-atmelavr/bin",
|
||||
"internalConsoleOptions": "openOnSessionStart",
|
||||
"loadMode": "manual"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue