-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
36 lines (31 loc) · 999 Bytes
/
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
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
; We have to keep libdeps dir out the project directory otherwise,
; library scanner seems to have issues so compilation fails
libdeps_dir = /tmp/libdeps
src_dir = .
;--- ESP8266 -----------------------------------------------
[env:esp8266_IP]
platform = espressif8266
board = esp12e
board_build.ldscript = eagle.flash.1m.ld
framework = arduino
upload_speed = 57600
lib_deps =
https://github.com/thelsing/knx.git
ESP8266WiFi
https://github.com/tzapu/WiFiManager.git
build_flags =
-DMASK_VERSION=0x57B0
-Wno-unknown-pragmas
monitor_speed = 57600
monitor_filters = esp8266_exception_decoder
build_type = debug