-
Notifications
You must be signed in to change notification settings - Fork 92
/
platformio.ini
58 lines (50 loc) · 2.07 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
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[platformio]
default_envs = dc1
[env]
framework = arduino
board = esp01_1m
board_build.f_cpu = 80000000L
board_build.flash_mode = dout
board_build.ldscript = eagle.flash.1m.ld
; *** Esp8266 core for Arduino version 2.6.1
platform = [email protected]
build_flags = -D NDEBUG
-mtarget-align
-Wl,-Map,firmware.map
; -Wl,-Teagle.flash.1m.ld
-DBEARSSL_SSL_BASIC
; NONOSDK22x_190703 = 2.2.2-dev(38a443e)
-DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703
; lwIP 2 - Higher Bandwidth no Features
-DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH
; VTABLES in Flash
-DVTABLES_IN_FLASH
; No exception code in firmware
-fno-exceptions
-lstdc++
-D MQTT_MAX_PACKET_SIZE=768
-D MQTT_SOCKET_TIMEOUT=5
-D PB_FIELD_16BIT=1
; *** Fix [email protected] induced undesired all warnings
build_unflags = -Wall
monitor_speed = 115200
upload_speed = 921600
; *** Upload Serial reset method for Wemos and NodeMCU
upload_resetmethod = nodemcu
;upload_port = COM5
extra_scripts = scripts/strip-floats.py
scripts/name-firmware.py
lib_deps =
PubSubClient
Nanopb=https://github.com/nanopb/nanopb.git#nanopb-0.3.9.5
[env:dc1]
lib_deps = ${env.lib_deps}
EspSoftwareSerial=https://github.com/plerup/espsoftwareserial.git#5.0.4