-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
113 lines (95 loc) · 2.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
; 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 = aduio_pcm5102a
src_dir = examples/aduio_pcm5102a
; src_dir = examples/A7682E/test_AT
; src_dir = examples/factory
; src_dir = examples/test_BHI260AP
; src_dir = examples/test_EPD
; src_dir = examples/test_factory
; src_dir = examples/test_GPS
; src_dir = examples/test_keypad
; src_dir = examples/test_lora_recv
; src_dir = examples/test_lora_send
; src_dir = examples/test_LTR_553ALS
; src_dir = examples/test_lvgl
; src_dir = examples/test_sd
; src_dir = examples/test_touchpad
; src_dir = examples/test_wifi
;----------------------------------------;
boards_dir = boards
default_envs = T-Deck-Pro
; src_dir = examples/${platformio.default_envs}
[env:T-Deck-Pro]
platform = [email protected]
board = T-Deck-Pro
framework = arduino
upload_speed = 115200
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
; extra_scripts = ./script/select_env.py
build_flags =
-DBOARD_HAS_PSRAM
; Enable UARDUINO_ USB_ CDC_ ON_ BOOT will start printing and wait for terminal access during startup
-DARDUINO_USB_CDC_ON_BOOT=1
; Enable UARDUINO_USB_CDC_ON_BOOT will turn off printing and will not block when using the battery
; -UARDUINO_USB_CDC_ON_BOOT
-DDISABLE_ALL_LIBRARY_WARNINGS
-Wnarrowing
; LVGL config
-DLV_LVGL_H_INCLUDE_SIMPLE
-DLV_CONF_INCLUDE_SIMPLE
-include config/lv_conf.h
; -DLOG_PORT=Serial
; Debug output
-DCORE_DEBUG_LEVEL=0
lib_deps =
; zinggjm/[email protected]
; jgromes/[email protected]
; lewisxhe/SensorLib@^0.2.0
; mikalhart/TinyGPSPlus @ ^1.0.3
; vshymanskyy/TinyGSM@^0.12.0
; lvgl/lvgl @ ~8.3.9
; lewisxhe/XPowersLib @ ^0.2.4
; adafruit/Adafruit TCA8418 @ ^1.0.1
; adafruit/Adafruit BusIO @ ^1.14.4
; olikraus/U8g2_for_Adafruit_GFX@^1.8.0
; adafruit/Adafruit GFX Library@^1.11.10
; esphome/ESP32-audioI2S#v3.0.12
SPI
Wire
FS
SPIFFS
EEPROM
; [env:aduio_pcm5102a]
; platform = [email protected]
; board = T-Deck-Pro
; framework = arduino
; build_flags =
; -DBOARD_HAS_PSRAM
; -DARDUINO_USB_CDC_ON_BOOT=1
; -DDISABLE_ALL_LIBRARY_WARNINGS
; -Wnarrowing
; lib_deps =
; esphome/ESP32-audioI2S@^2.0.7
; [env:factory]
; [env:test_BHI260AP]
; [env:test_EPD]
; [env:test_factory]
; [env:test_GPS]
; [env:test_keypad]
; [env:test_lora_recv]
; [env:test_lora_send]
; [env:test_LTR_553ALS]
; [env:test_lvgl]
; [env:test_sd]
; [env:test_touchpad]
; [env:test_wifi]