forked from xyzroe/XZG
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplatformio.ini
More file actions
51 lines (46 loc) · 1.24 KB
/
platformio.ini
File metadata and controls
51 lines (46 loc) · 1.24 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
; 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 = prod
[env]
platform = https://github.com/tasmota/platform-espressif32/releases/download/2023.07.00/platform-espressif32.zip
board = esp32dev
framework = arduino
lib_deps =
bblanchon/[email protected]
rlogiacco/CircularBuffer@>=1.4.0
sstaub/Ticker@>=4.4.0
Martin-Laclaustra/CronAlarms
marvinroger/AsyncMqttClient @ ^0.9.0
me-no-dev/[email protected]
milesburton/DallasTemperature @ ^3.11.0
monitor_filters = direct
monitor_speed = 115200
upload_speed = 460800
extra_scripts =
pre:tools/build/pre_build.py
pre:tools/webfilesbuilder/build_html.py
pre:tools/export_compile_commands.py
post:tools/build/build.py
build_flags =
-DBUILD_ENV_NAME=$PIOENV
[env:prod]
build_flags =
${env.build_flags}
extra_scripts =
${env.extra_scripts}
[env:debug]
build_flags =
-DDEBUG
${env.build_flags}
extra_scripts =
${env.extra_scripts}
lib_deps =
${env.lib_deps}