-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
51 lines (41 loc) · 1014 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
41
42
43
44
45
46
47
48
49
50
[common]
framework = arduino
build_flags =
-ggdb
-w
monitor_speed = 115200
upload_speed = 115200
lib_deps =
FastLed
[common:esp8266]
platform = [email protected]
board_build.flash_mode = dout
upload_resetmethod = nodemcu
build_flags =
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
-Wl,-Teagle.flash.4m.ld
-D USE_EADNS
-D PIO_PLATFORM
lib_deps =
[common:esp32]
platform = https://github.com/platformio/platform-espressif32.git#feature/stage
build_flags =
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
-D ARDUINO_ARCH_ESP32
lib_ignore =
lib_deps =
# see: http://docs.platformio.org/en/latest/platforms/espressif32.html
[env:mhetesp32minikit]
board = mhetesp32minikit
framework = ${common.framework}
platform = ${common:esp32.platform}
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
build_flags =
${common.build_flags}
${common:esp32.build_flags}
lib_ignore =
${common:esp32.lib_ignore}
lib_deps =
${common.lib_deps}
${common:esp32.lib_deps}