-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
69 lines (51 loc) · 1.69 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
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
[platformio]
#env_default = esp12e
env_default = esp-adc
[env:esp12e]
platform = espressif8266
framework = arduino
board = esp07
# ck-reset: connect DTR to GPIO0 (plus Pullup to 3V3) and RTS to Reset
upload_resetmethod = ck
# The ESP-Arduino framework allows to debug OTA by defining DEBUG_UPDATER with a stream to write Debug messages
build_flags = -DDEBUG_UPDATER=Serial -Wl,-Tesp8266.flash.1m64.ld
lib_ldf_mode=chain+
lib_deps=HomieNodeCollection, HomieLoggerNode
#targets = upload
upload_speed = 460800
monitor_speed = 74880
# In-circuit ESP-ADC has 512k flash only
[env:esp-adc]
platform = espressif8266
framework = arduino
board = esp12e
monitor_speed = 74880
# ck-reset: connect DTR to GPIO0 (plus Pullup to 3V3) and RTS to Reset
upload_resetmethod = ck
build_flags = -Wl,-Tesp8266.flash.512k64.ld
lib_ldf_mode=chain+
lib_deps=HomieNodeCollection, HomieLoggerNode
#targets = upload
upload_speed = 460800
#Environment to test development of HomieNodeCollection
[env:lib-dev]
platform = espressif8266
framework = arduino
board = esp12e
# ck-reset: connect DTR to GPIO0 (plus Pullup to 3V3) and RTS to Reset
upload_resetmethod = ck
# The ESP-Arduino framework allows to debug OTA by defining DEBUG_UPDATER with a stream to write Debug messages
build_flags = -DDEBUG_UPDATER=Serial -Wl,-Tesp8266.flash.1m64.ld
#build_flags = -Wl,-Tesp8266.flash.512k64.ld
lib_ldf_mode=chain+
lib_deps=HomieNodeCollection, HomieLoggerNode
#targets = upload
upload_speed = 460800