mirror of
https://github.com/markqvist/reticulum-cpp.git
synced 2024-10-01 02:55:46 -04:00
47 lines
943 B
INI
47 lines
943 B
INI
; 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 = native
|
|
|
|
[env:avr-test]
|
|
platform = atmelavr
|
|
board = megaatmega2560
|
|
framework = arduino
|
|
debug_tool = simavr
|
|
|
|
[env:native]
|
|
platform = native
|
|
build_flags =
|
|
-std=c++11
|
|
-Wall
|
|
-Wextra
|
|
-Wno-missing-field-initializers
|
|
-Wno-format
|
|
-Isrc
|
|
-DNATIVE
|
|
lib_deps =
|
|
; operatorfoundation/Crypto@^0.4.0
|
|
lib_compat_mode = off
|
|
|
|
[env:ttgo-t-beam]
|
|
platform = espressif32
|
|
board = ttgo-t-beam
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
build_flags =
|
|
-Wall
|
|
-Wextra
|
|
-Wno-missing-field-initializers
|
|
-Wno-format
|
|
-Isrc
|
|
lib_deps =
|
|
operatorfoundation/Crypto@^0.4.0
|