Skip to content

Instantly share code, notes, and snippets.

View JonasProgrammer's full-sized avatar

Jonas Stoehr JonasProgrammer

  • Simba n³ GmbH
  • Germany
View GitHub Profile
#### Contents of the preconfiguration file (for buster)
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US.UTF-8
# The values can also be preseeded individually for greater flexibility.
#d-i debian-installer/language string en
#d-i debian-installer/country string NL
#d-i debian-installer/locale string en_GB.UTF-8
# Optionally specify additional locales to be generated.
BasedOnStyle: Chromium
IndentWidth: 4
UseTab: Never
---
Language: Cpp
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignEscapedNewlines: Left
AlignOperands: true
AlignTrailingComments: true
PS D:\tmp> $ENV:APPVEYOR_BUILD_FOLDER="D:\tmp\appveyor"
PS D:\tmp> echo $ENV:APPVEYOR_BUILD_FOLDER
D:\tmp\appveyor
PS D:\tmp> $ENV:ARDUINO_SDK_VERSION="1.6.13"
PS D:\tmp> $env:ARDUINO_SDK_FILE = "arduino-$env:ARDUINO_SDK_VERSION-windows.zip"
PS D:\tmp> $env:ARDUINO_SDK_URI = "https://downloads.arduino.cc/$env:ARDUINO_SDK_FILE"
PS D:\tmp> $env:ARDUINO_SDK_FILE_PATH = "$env:APPVEYOR_BUILD_FOLDER/$env:ARDUINO_SDK_FILE"
PS D:\tmp> $env:ARDUINO_SDK_PATH = "$env:APPVEYOR_BUILD_FOLDER/arduino-sdk"
PS D:\tmp> $env:CMAKE_MAKE_PROGRAM = "$env:ARDIUNO_SDK_PATH}/hardware/tools/avr/utils/bin/make.exe"
PS D:\tmp> (New-Object System.Net.WebClient).DownloadFile($env:ARDUINO_SDK_URI, $env:ARDUINO_SDK_FILE_PATH)