You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
; PlatformIO Project Configuration File |
|
; |
|
; Build options: build flags, source filter |
|
; Upload options: custom upload port, speed and extra flags |
|
; Library options: dependencies, extra library storages |
|
; Advanced options: extra scripting |
|
; |
|
; Please visit documentation for the other options and examples |
|
; https://docs.platformio.org/page/projectconf.html |
|
|
|
[env:megaatmega2560] |
|
platform = atmelavr |
|
board = megaatmega2560 |
|
framework = arduino |
|
upload_port = /dev/ttyUSB0 |
|
monitor_speed = 38400 |
|
monitor_port = /dev/ttyUSB0 |
|
build_flags = |
|
-fmax-errors=5 |
|
-Os |
|
-ffunction-sections |
|
-fdata-sections |
|
-Wl,--gc-sections |
|
-flto |
|
-Wl,--relax |
|
-fmerge-constants |
|
-fno-exceptions |
|
-DUSE_BIG_FONTS=1 |
|
-DUSE_UTFT_SDRAW=1 |
|
-DDISABLE_START_MENU_IMAGE=1 |
|
upload_flags = -V |
|
check_skip_packages = yes |
|
lib_deps = |
|
greiman/SdFat@^2.1.2 |
|
maximebohrer/SimpleKeypad@^1.0.0 |
|
bblanchon/ArduinoJson@^6.19.4 |
|
adafruit/Adafruit BusIO@^1.16.0 |
|
adafruit/Adafruit PN532@^1.3.3 |
|
nicohood/PinChangeInterrupt@^1.2.9
|
|
|