-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
88 lines (79 loc) · 1.75 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
[platformio]
src_dir = infoclk
default_envs = stable
extra_configs =
user_*.ini
[libs]
builtin =
SPI
Wire
external =
SparkFun SGP30 Arduino Library
Adafruit BusIO
; finitespace/BME280
https://github.com/finitespace/BME280
; Adafruit GFX Library
https://github.com/vortigont/Adafruit-GFX-Library#cyrfont
https://github.com/vortigont/arduino-Max72xxPanel
https://github.com/enjoyneering/HTU2xD_SHT2x_Si70xx
[env]
framework = arduino
platform = espressif8266
board_build.filesystem = littlefs
lib_deps =
${libs.builtin}
${libs.external}
build_flags =
-DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190313
-DFZ_WITH_ASYNCSRV
build_src_flags =
!python flags.py
upload_speed = 460800
monitor_speed = 115200
[env:stable]
platform = espressif8266
;platform = espressif8266@3.1.0
board = d1_mini
board_build.ldscript = eagle.flash.4m2m.ld
lib_deps =
${env.lib_deps}
https://github.com/vortigont/EmbUI.git#v2.6
build_flags =
${env.build_flags}
build_src_flags =
${env.build_src_flags}
monitor_filters = esp8266_exception_decoder
; debug version
[env:debug]
extends = stable
build_src_flags =
${env.build_src_flags}
-D_FWDEBUG_
[env:esp32]
platform = espressif32
board = wemos_d1_mini32
lib_deps =
${env.lib_deps}
https://github.com/vortigont/EmbUI.git#v2.6
build_flags =
${env.build_flags}
build_src_flags =
${env.build_src_flags}
monitor_filters = esp32_exception_decoder
[env:esp32debug]
extends = env:esp32
build_flags =
${env.build_flags}
-D_FWDEBUG_
-DEMBUI_DEBUG
; EMBUI staging
;[env:stage]
;extends = stable
;lib_deps =
; ${env.lib_deps}
; https://github.com/vortigont/EmbUI.git
;build_flags =;
; ${env.build_flags}
;build_src_flags =
; ${env.build_src_flags}
; Stick to Arduino Core 2.7 - platform = espressif8266@2.6.3