LoRa_APRS_iGate/platformio.ini

50 lines
1.6 KiB
INI
Raw Normal View History

2023-07-31 19:41:25 +02:00
; 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
2021-04-09 21:34:23 +02:00
[platformio]
default_envs = lora_board
2020-04-17 16:33:30 +02:00
[env]
2023-12-28 01:12:58 +01:00
platform = espressif32 @ 6.5.0
2020-05-08 23:59:19 +02:00
framework = arduino
2020-04-05 18:21:24 +02:00
lib_ldf_mode = deep+
monitor_speed = 115200
2022-10-25 19:13:21 +02:00
monitor_raw = yes
2020-04-05 18:21:24 +02:00
lib_deps =
2023-12-09 01:12:44 +01:00
bblanchon/ArduinoJson @ 6.21.4
2023-01-20 11:44:41 +01:00
lewisxhe/AXP202X_Library @ 1.1.3
2021-01-04 23:10:23 +01:00
peterus/APRS-Decoder-Lib @ 0.0.6
2022-03-19 18:43:48 +01:00
peterus/esp-logger @ 1.0.0
2023-09-15 02:12:32 +02:00
peterus/ESP-FTP-Server-Lib @ 0.14.1
knolleary/PubSubClient@^2.8
2024-05-22 02:12:37 +02:00
mikalhart/TinyGPSPlus @ 1.1.0
shaggydog/OneButton @ 1.5.0
2023-11-30 01:12:49 +01:00
jgromes/RadioLib @ 6.3.0
2020-05-29 21:13:11 +02:00
check_tool = cppcheck
2023-09-23 15:47:14 +02:00
check_flags = cppcheck: --std=c++20 --suppress=*:*.pio\* --inline-suppr --suppress=unusedFunction --suppress=shadowFunction:*TimeLib.cpp --suppress=unreadVariable:*TimeLib.cpp --suppress=badBitmaskCheck:*project_configuration.cpp
2021-01-19 23:12:55 +01:00
check_skip_packages = yes
2023-02-18 11:51:39 +01:00
test_build_src = yes
# activate for OTA Update, use the CALLSIGN from is-cfg.json as upload_port:
#upload_protocol = espota
#upload_port = <CALLSIGN>.local
2020-04-17 16:33:30 +02:00
[env:lora_board]
2020-12-03 23:09:29 +01:00
board = esp32doit-devkit-v1
2024-01-08 22:27:43 +01:00
build_flags = -Werror -Wall -DUNITY_INCLUDE_PRINT_FORMATTED -DCONFIG_ETH_ENABLED
2021-04-09 21:34:23 +02:00
2023-07-31 19:41:25 +02:00
[env:lora_v3_board]
board = heltec_wifi_lora_32_V3
2024-01-08 22:27:43 +01:00
build_flags = -Werror -Wall -DUNITY_INCLUDE_PRINT_FORMATTED -DCONFIG_ETH_ENABLED
2023-07-31 19:41:25 +02:00
2021-04-09 21:34:23 +02:00
[env:lora_board_debug]
board = esp32doit-devkit-v1
2024-01-08 22:27:43 +01:00
build_flags = -Werror -Wall -DCORE_DEBUG_LEVEL=5 -DUNITY_INCLUDE_PRINT_FORMATTED -DCONFIG_ETH_ENABLED
build_type = debug