-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathplatformio.ini
More file actions
112 lines (103 loc) · 3.2 KB
/
platformio.ini
File metadata and controls
112 lines (103 loc) · 3.2 KB
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
[platformio]
default_envs = project_aura
[env:project_aura]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip
platform_packages =
platformio/framework-arduinoespressif32@https://github.com/espressif/arduino-esp32.git#3.1.1
platformio/framework-arduinoespressif32-libs@https://dl.espressif.com/AE/esp-arduino-libs/esp32-3.1.1-h.zip
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
; --- MEMORY (Flash) ---
; Flash: 16MB
board_upload.flash_size = 16MB
board_build.partitions = partitions_16MB_littlefs.csv
board_build.filesystem = littlefs
board_build.arduino.memory_type = qio_opi
board_build.sdkconfig = sdkconfig.defaults
build_flags =
-DCORE_DEBUG_LEVEL=1
-DAPP_VERSION=\"1.1.3\"
-DLV_CONF_INCLUDE_SIMPLE
-DLV_LVGL_H_INCLUDE_SIMPLE
-DLV_COLOR_16_SWAP=0
-I include
build_src_filter =
+<*>
-<ui/ui.c>
-<web/WebTransportArduino.cpp>
extra_scripts =
pre:scripts/set_build_id.py
pre:scripts/generate_dashboard_gzip.py
pre:scripts/generate_dac_gzip.py
pre:scripts/generate_theme_gzip.py
lib_deps =
https://github.com/esp-arduino-libs/ESP32_Display_Panel.git
https://github.com/esp-arduino-libs/ESP32_IO_Expander.git#v1.1.0
https://github.com/esp-arduino-libs/esp-lib-utils.git#v0.2.0
https://github.com/lvgl/lvgl.git#v8.4.0
bblanchon/ArduinoJson@^7.0.0
[env:native_test]
platform = native
test_framework = unity
test_build_src = true
lib_deps =
bblanchon/ArduinoJson@^7.0.0
build_flags =
-DUNIT_TEST
build_src_filter =
+<config/AppData.cpp>
+<modules/PressureHistory.cpp>
+<modules/ChartsHistory.cpp>
+<modules/DacAutoConfig.cpp>
+<modules/MqttPayloadBuilder.cpp>
+<modules/SensorManager.cpp>
+<modules/StorageManager.cpp>
+<modules/TimeManager.cpp>
+<drivers/Bmp3xxProbe.cpp>
+<drivers/Pcf8523.cpp>
+<drivers/Ds3231.cpp>
+<web/WebApiUtils.cpp>
+<web/WebChartsApiUtils.cpp>
+<web/WebChartsUtils.cpp>
+<web/WebColorUtils.cpp>
+<web/WebDashboardPage.cpp>
+<web/WebDacApiUtils.cpp>
+<web/WebDacUtils.cpp>
+<web/WebInputValidation.cpp>
+<web/WebMqttPage.cpp>
+<web/WebMqttSaveUtils.cpp>
+<web/WebMultipart.cpp>
+<web/WebQueryString.cpp>
+<web/WebDeferredActionsState.cpp>
+<web/WebDiagApiUtils.cpp>
+<web/WebEventsApiUtils.cpp>
+<web/WebEventsUtils.cpp>
+<web/WebJsonUtils.cpp>
+<web/WebNetworkUtils.cpp>
+<web/WebOtaApiUtils.cpp>
+<web/WebOtaState.cpp>
+<web/WebSettingsApiUtils.cpp>
+<web/WebSettingsUtils.cpp>
+<web/WebResponseUtils.cpp>
+<web/WebStateApiUtils.cpp>
+<web/WebStreamPolicy.cpp>
+<web/WebStreamState.cpp>
+<web/WebStreamWriter.cpp>
+<web/WebTextUtils.cpp>
+<web/WebThemeApiUtils.cpp>
+<web/WebThemePage.cpp>
+<web/WebUiBridgeAdapters.cpp>
+<web/WebWifiPage.cpp>
+<web/WebWifiSaveUtils.cpp>
+<web/WebWifiScanUtils.cpp>
+<core/BootPolicy.cpp>
+<core/AirQualityEngine.cpp>
+<core/InitConfig.cpp>
+<core/Logger.cpp>
+<core/MqttEventQueue.cpp>
+<core/SystemEventPolicy.cpp>
+<core/SystemLogFilter.cpp>
+<web/OtaDeferredRestart.cpp>
extra_scripts =
pre:test/prepend_mocks.py