-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
41 lines (37 loc) · 1.15 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
; 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
[env:nano32]
platform = espressif8266
framework = arduino
board = espresso_lite_v2
upload_speed = 460800
build_flags = -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wl,-Teagle.flash.4m1m.ld
extra_scripts = extra_script.py
upload_resetmethod = nodemcu
; lib_ldf_mode = deep
lib_deps =
ESP Async [email protected]
; [env:latte_v2]
; platform = espressif8266
; framework = arduino
; board = espresso_lite_v2
; upload_speed = ${common_env_data.upload_speed}
; build_flags =
; ${common_env_data.build_flags}
; -Wl,-Teagle.flash.2m.ld
; extra_scripts = extra_script.py
; upload_resetmethod = nodemcu
; lib_ldf_mode = 2
; lib_deps =
; ${common_env_data.lib_deps_external}
[platformio]
src_dir = examples/base
lib_dir = lib-dev