-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
43 lines (37 loc) · 1006 Bytes
/
platformio.ini
File metadata and controls
43 lines (37 loc) · 1006 Bytes
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
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
[common_env_data]
lib_deps = Wire
[env:d1_mini]
platform = espressif8266
framework = arduino
board = d1_mini
upload_speed = 921600
monitor_speed = 230400
#build_flags = -Wl,-Tesp8266.flash.4m.ld,-std=c++11
lib_deps = ${common_env_data.lib_deps}
[env:lolin32]
platform = espressif32
framework = arduino
board = lolin32
lib_deps = ${common_env_data.lib_deps}
[env:nano]
platform = atmelavr
framework = arduino
board = nanoatmega328
monitor_speed = 230400
lib_deps = ${common_env_data.lib_deps}
[env:stm32]
platform = ststm32
framework = arduino
board = genericSTM32F103C8
lib_deps = ${common_env_data.lib_deps}
[env:native]
platform = native
build_flags = -std=c++11