-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplatformio.ini
More file actions
45 lines (40 loc) · 1.17 KB
/
platformio.ini
File metadata and controls
45 lines (40 loc) · 1.17 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
[platformio]
env_default = generic
[common]
platform = https://github.com/platformio/platform-espressif8266.git
lib_deps =
ArduinoJson
ESPAsyncTCP
ESPAsyncUDP
ESP Async WebServer
AsyncMqttClient
Time
https://github.com/pm-cz/ESP8266SMTPClient
https://github.com/enjoyneering/HTU21D
https://github.com/hibikiledo/AM2320
; boards which GPIO0 and RESET controlled using two NPN transistors as nodemcu devkit (includes wemos d1 mini)
[env:generic]
board_build.f_cpu = 80000000L
platform = ${common.platform}
framework = arduino
board = esp12e
upload_resetmethod = nodemcu
lib_deps = ${common.lib_deps}
extra_scripts = scripts/GENdeploy.py
build_flags = -Wl,-Teagle.flash.4m2m.ld
src_build_flags = !echo "-DBUILD_TAG="$TRAVIS_TAG
upload_speed = 921600
monitor_speed = 115200
; generic firmware for debugging purposes
[env:debug]
board_build.f_cpu = 80000000L
platform = ${common.platform}
framework = arduino
board = esp12e
lib_deps = ${common.lib_deps}
build_flags = -Wl,-Teagle.flash.4m2m.ld
-DDEBUG
src_build_flags = !echo "-DBUILD_TAG="$TRAVIS_TAG
extra_scripts = scripts/DBGdeploy.py
upload_speed = 921600
monitor_speed = 115200