-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
75 lines (66 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
; 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]
default_envs = nodemcuv2
; src_dir = src_gps_serial_monitor_oled
[common]
framework = arduino
lib_deps =
SPI
Wire
64 ; ArduinoJson
; [email protected] ; ArduinoJson
1269 ; Painless Mesh
; [email protected] ; Painless Mesh
[email protected] ; Adafruit SSD1306
13 ; Adafruit GFX Library
22 ; Adafruit HX8357 Library
377 ; Adafruit STMPE610
307 ; Firmata
; we had very similar issue like --> https://gitlab.com/painlessMesh/painlessMesh/issues/159
; but according to the discussion.. this should not happen again.. since that should be fixed @ 1.2.7 and i was using 1.2.8. no?
; so.. somehow commented other version requirements.. (dependent libs.)
; now.. it seems.. works fine..?
; but no clear mind. what was it? and why now ok?
[env:nodemcuv2]
platform = espressif8266
board = nodemcuv2
framework = ${common.framework}
lib_deps =
ESP8266WiFi
Servo(esp8266)
; [email protected] ; ESPAsyncTCP
${common.lib_deps}
upload_speed = 921600
[env:huzzah]
platform = espressif8266
board = huzzah
framework = ${common.framework}
lib_deps =
ESP8266WiFi
Servo(esp8266)
; [email protected] ; ESPAsyncTCP
${common.lib_deps}
upload_speed = 921600
[env:featheresp32]
build_unflags = -std=gnu++11
build_flags = -std=gnu++14 ; AsyncTCP wants this.
platform = espressif32
board = featheresp32
framework = ${common.framework}
lib_deps =
[email protected] ; AsyncTCP
${common.lib_deps}
upload_speed = 921600
; < NOTE >
; to enable verbose output type in the terminal -->
; $ platformio settings set force_verbose Yes
; then confirm the change -->
; $ platformio settings get