CubeCellRepeater/platformio.ini

30 lines
791 B
INI
Raw Normal View History

; 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
2020-10-27 14:35:02 +00:00
[platformio]
default_envs = cubecell_board
[common]
framework = arduino
monitor_speed = 115200
build_flags = -Os
2024-04-27 12:58:16 +00:00
lib_deps = jgromes/RadioLib
check_tool = cppcheck
build_type = release
2020-10-27 14:35:02 +00:00
[env:cubecell_board]
2020-10-27 14:35:02 +00:00
extends = common
2024-04-27 12:58:16 +00:00
platform = heltec-cubecell
2020-10-27 14:35:02 +00:00
board = cubecell_board
2024-04-27 12:58:16 +00:00
platform_packages = platformio/toolchain-gccarmnoneeabi@^1.120301.0
build_flags = ${common.build_flags}
-D CUBECELL=1
2020-10-27 14:35:02 +00:00