forked from esprfid/esp-rfid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
40 lines (37 loc) · 1.02 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
[platformio]
env_default = nodemcu
[common]
platform = https://github.com/platformio/platform-espressif8266.git#feature/stage
lib_deps =
ArduinoJson
ESPAsyncTCP
ESPAsyncUDP
ESP Async WebServer
AsyncMqttClient
Time
63
https://github.com/monkeyboard/Wiegand-Protocol-Library-for-Arduino.git
; boards which GPIO0 and RESET controlled using two NPN transistors as nodemcu devkit (includes wemos d1 mini)
[env:nodemcu]
lib_ldf_mode = deep+
board_build.f_cpu = 160000000L
platform = ${common.platform}
framework = arduino
board = esp12e
upload_resetmethod = nodemcu
lib_deps = ${common.lib_deps}
build_flags = -Wl,-Teagle.flash.4m2m.ld
extra_scripts = scripts/pio_script.py
upload_speed = 921600
monitor_speed = 115200
; for Travis CI deployment
[env:deploy]
lib_ldf_mode = deep+
board_build.f_cpu = 160000000L
platform = ${common.platform}
framework = arduino
board = esp12e
lib_deps = ${common.lib_deps}
extra_scripts = scripts/pio_script.py
build_flags = -Wl,-Teagle.flash.4m2m.ld
src_build_flags = !echo "-DBUILD_TAG="$TRAVIS_TAG