-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
40 lines (35 loc) · 957 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
37
38
39
40
; 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
; http://docs.platformio.org/page/projectconf.html
[platformio]
src_dir = .
; env_default = nodemcuv2
[common]
framework = arduino
lib_ldf_mode = deep+
lib_compat_mode = strict
lib_deps = https://github.com/cwi-dis/iotsa.git#develop
build_flags =
; build_flags = -DIOTSA_WITH_HTTPS
[esp8266]
extends = common
platform = espressif8266
lib_ignore = esp32_https_server_compat
board_build.ldscript = eagle.flash.4m3m.ld
build_flags = ${common.build_flags}
[esp32]
extends = common
platform = espressif32
build_flags = ${common.build_flags}
[env:nodemcuv2]
extends = esp8266
board = nodemcuv2
[env:esp32thing]
extends = esp32
board = esp32thing