12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- ; 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
- [platformio]
- default_envs = ttgo-t-beam-v1
- [env]
- platform = espressif32 @ 6.7.0
- framework = arduino
- lib_ldf_mode = deep+
- monitor_speed = 115200
- monitor_filters = esp32_exception_decoder
- lib_deps =
- peterus/esp-logger @ 1.0.0
- adafruit/Adafruit SSD1306
- adafruit/Adafruit GFX Library
- mikalhart/TinyGPSPlus
- lewisxhe/XPowersLib
- jgromes/RadioLib
- [env:ttgo-t-beam-AXP2101-v1_2]
- board = ttgo-t-beam
- build_flags = -Werror -Wall -DTTGO_T_Beam_V1_2
- [env:ttgo-t-beam-v1]
- board = ttgo-t-beam
- build_flags = -Werror -Wall -DTTGO_T_Beam_V1_0
- [env:ttgo-t-beam-v0_7]
- board = ttgo-t-beam
- build_flags = -Werror -Wall -DTTGO_T_Beam_V0_7
- [env:uno]
- platform = atmelavr
- board = uno
- framework = arduino
|