-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
33 lines (30 loc) · 1000 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
; 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:ttgo-lora32-v21]
platform = espressif32
board = ttgo-lora32-v21
framework = arduino
lib_deps =
; icnludes a simple fix
https://github.com/MajorTwip/arduino-lmic
https://github.com/majortwip/arduino-lorawan
; Ofiicial Release is missing a Patch that causes a Boot-Loop #204
; mcci-catena/MCCI Arduino LoRaWAN Library @ ^0.9.2
thesolarnomad/LoRa Serialization@^3.2.1
mikalhart/TinyGPSPlus@^1.0.3
olikraus/U8g2 @ ^2.34.18
monitor_speed = 115200
build_flags =
; Define Frequancy
-DARDUINO_LMIC_CFG_NETWORK_TTN=1
-DCFG_eu868=1
; mitigate "multiple definitions hal_init" - Bug
-D hal_init=LMICHAL_init
-DLMIC_DEBUG_LEVEL=1