-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
77 lines (71 loc) · 1.57 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
76
77
; 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]
name = Omni_Firmware
description = Robot Omni Firmware
default_envs = Esp32_NO_WIFI
[env]
platform = espressif32
board = ESP32-S3-Tiny
framework = arduino
build_type = debug
build_src_filter =
+<*>
-<.git/>
-<.svn/>
-<test-simulator/>
-<test/>
-<**/*.jpeg>
-<**/*.txt>
-<*.jpeg>
-<*.txt>
upload_speed = 921600
monitor_speed = 921600
monitor_filters = esp32_exception_decoder
lib_deps =
sparkfun/SparkFun Qwiic OTOS Arduino Library@^1.0.0
sparkfun/SparkFun Toolkit@^0.9.2
adafruit/Adafruit NeoPixel@^1.12.3
build_unflags =
-std=gnu++11
build_flags =
-std=c++17
-std=gnu++17
[env:Esp32_NO_WIFI]
upload_protocol = esptool
build_flags =
-DARDUINO_USB_MODE=1
-DARDUINO_USB_CDC_ON_BOOT=1
-D ARDUINO_ESP32S3_DEV
-D NO_WIFI
[env:Esp32_WOKWI]
upload_protocol = esptool
build_flags =
-DARDUINO_USB_MODE=1
-D ARDUINO_ESP32S3_DEV
-D NO_WIFI
-D SIMULATOR
[env:Esp32_WITH_WIFI]
upload_protocol = esptool
build_flags =
-DARDUINO_USB_MODE=1
-DARDUINO_USB_CDC_ON_BOOT=1
-D ARDUINO_ESP32S3_DEV
-D WITH_WIFI
-D WITH_OTA
[env:Esp32_OTA]
upload_protocol = espota
upload_port = 192.168.137.110
build_flags =
-DARDUINO_USB_MODE=1
-DARDUINO_USB_CDC_ON_BOOT=1
-D ARDUINO_ESP32S3_DEV
-D WITH_WIFI
-D WITH_OTA