-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini.orig
71 lines (67 loc) · 1.96 KB
/
platformio.ini.orig
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
; 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
[env]
extends = espressif32_base
platform = espressif32
board = esp32dev
board_build.partitions = bigspiffs.csv
framework = arduino
lib_ldf_mode = deep
monitor_speed = 115200
lib_deps =
mairas/ReactESP@^2.0.0
ttlappalainen/[email protected]
ttlappalainen/[email protected]
ttlappalainen/[email protected]
adafruit/Adafruit [email protected]
adafruit/Adafruit [email protected]
pfeerick/[email protected]
https://github.com/wjquigs11/movingAvg
arduino-libraries/[email protected]
https://github.com/khoih-prog/ESPAsync_WiFiManager
https://github.com/khoih-prog/ESP_DoubleResetDetector
https://github.com/khoih-prog/ESPAsyncDNSServer
adafruit/Adafruit Adafruit_BNO08x [email protected]
https://github.com/mathieucarbou/AsyncTCP#v3.1.4
https://github.com/mathieucarbou/ESPAsyncWebServer#v3.0.6
ayushsharma82/WebSerial@^2.0.6
[env:OGwind]
; v1 uses ESPberry with PICAN-M HAT and uses Timo drivers
; also uses NMEA0183 for autopilot
build_flags =
-D PICAN
-D LED_BUILTIN=2
-D Adafruit_BNO08x bno08x
-D NMEA0183
lib_deps =
https://github.com/ttlappalainen/CAN_BUS_Shield.git
ttlappalainen/NMEA2000_mcp
${env.lib_deps}
[env:rs485can]
; rs485can uses Waveshare CAN HAT but doesn't work with Timo drivers
; also uses a different display protocol
; and CMPS14 instead of BNO
build_flags =
-D LED_BUILTIN=2
-D RS485CAN
-D CMPS14
lib_deps =
https://github.com/Seeed-Studio/Seeed_Arduino_CAN
${env.lib_deps}
[env:shesp]
; SH-ESP32 not using CAN at the moment
debug_tool = esp-prog
debug_init_break = tbreak setup
build_flags =
-D LED_BUILTIN=2
-D SH_ESP32
-D Adafruit_BNO08x bno08x
lib_deps =
${env.lib_deps}