-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
39 lines (35 loc) · 1.08 KB
/
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
34
35
36
37
38
39
; 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_T-Beam]
platform = espressif32
board = ttgo-t-beam
framework = arduino
monitor_speed = 115200
build_src_filter = -<keydump.cpp> +<main.cpp>
lib_deps =
metisvela/SailtrackModule@^1.7.2
lewisxhe/XPowersLib@^0.2.2
sparkfun/SparkFun u-blox GNSS Arduino Library@^2.0.9
jgromes/RadioLib@^5.1.2
build_flags =
-D STM_NOTIFICATION_LED_PIN=4
-D STM_NOTIFICATION_LED_ON_STATE=LOW
; Uncomment to use OTA
; upload_protocol = espota
; upload_port = 192.168.42.101
; Patch for macOS
; upload_port = /dev/cu.wchusbserial*
; monitor_port = /dev/cu.wchusbserial*
[env:KeyDump]
extends = env:TTGO_T-Beam
build_src_filter = +<keydump.cpp> -<main.cpp>
lib_deps =
lewisxhe/XPowersLib@^0.2.2
jgromes/RadioLib@^5.1.2