-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
platformio.ini
73 lines (70 loc) · 1.82 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
; 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:base]
platform = [email protected]
framework = arduino
monitor_speed = 115200
check_flags =
cppcheck: --enable=all --inline-suppr --suppress=*:*/.pio/*
[env:display]
extends = env:base
board = LilyGo-T-RGB
board_build.partitions = default_16MB.csv
upload_speed = 921600
build_src_filter = -<*> +<display/>
extra_scripts =
pre:scripts/auto_firmware_version.py
monitor_filters =
esp32_exception_decoder
time
default
build_flags =
-DLV_CONF_INCLUDE_SIMPLE
-DLV_CONF_PATH=${platformio.src_dir}/display/lv_conf.h
-DDISABLE_ALL_LIBRARY_WARNINGS
-DLV_CONF_SUPPRESS_DEFINE_CHECK
-DARDUINO_USB_CDC_ON_BOOT=1
-DCORE_DEBUG_LEVEL=3
-DCONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN
-fpermissive
-Os
-DELEGANTOTA_USE_ASYNC_WEBSERVER=1
-DCONFIG_MAX_FILENAME_LEN=64
-DCONFIG_MAX_URL_LEN=128
"-DTEMPLATE_PLACEHOLDER=\'$\'"
lib_deps =
lvgl/lvgl @ 8.3.11
lewisxhe/SensorLib @ 0.1.8
bodmer/TFT_eSPI @ 2.5.43
moononournation/GFX Library for Arduino @ 1.3.7
FS
SPIFFS
ble_ota_dfu
h2zero/NimBLE-Arduino@^1.4.0
homespan/[email protected]
mathieucarbou/AsyncTCP @ ^3.2.14
mathieucarbou/ESPAsyncWebServer @ 3.3.22
bblanchon/ArduinoJson@^7.2.1
[env:controller]
extends = env:base
board = Gaggimate-Controller
build_src_filter = -<*> +<controller/>
lib_deps =
FS
SPIFFS
ble_ota_dfu
br3ttb/PID-AutoTune@^1.0.0
br3ttb/PID@^1.2.1
adafruit/MAX6675 library@^1.1.2
h2zero/NimBLE-Arduino@^1.4.0
robtillaart/MAX31855@^0.6.1
bblanchon/ArduinoJson@^7.2.1
build_flags =
-DCORE_DEBUG_LEVEL=3