-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
50 lines (48 loc) · 1.6 KB
/
platformio.ini
File metadata and controls
50 lines (48 loc) · 1.6 KB
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
; 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:um_feathers3]
platform = espressif32
board = um_feathers3
framework = arduino
test_framework = unity
lib_ldf_mode = deep
monitor_speed = 115200
build_flags =
'-D ARDUINO_USB_MODE=0' ; Change to 1 when Unit testing otherwise 0 cause ESP are a bunch of dumbasses who forgot to double check their wiring before sending it off to the plant
'-D ARDUINO_USB_CDC_ON_BOOT=1'
lib_deps =
adafruit/Adafruit LIS3MDL@^1.2.1
adafruit/Adafruit BMP3XX Library@^2.1.2
adafruit/Adafruit LSM6DS@^4.7.0
adafruit/Adafruit BusIO@^1.14.5
adafruit/Adafruit Unified Sensor@^1.1.13
lib/AHRS
ESP32Servo
adafruit/Adafruit SPIFlash@^5.0.1
[env:um_feathers3_sim]
platform = espressif32
board = um_feathers3
framework = arduino
test_framework = unity
lib_ldf_mode = deep
monitor_speed = 115200
build_flags =
'-D ARDUINO_USB_MODE=0' ; Change to 1 when Unit testing otherwise 0 cause ESP are a bunch of dumbasses who forgot to double check their wiring before sending it off to the plant
'-D ARDUINO_USB_CDC_ON_BOOT=1'
'-D SIM'
lib_deps =
adafruit/Adafruit LIS3MDL@^1.2.1
adafruit/Adafruit BMP3XX Library@^2.1.2
adafruit/Adafruit LSM6DS@^4.7.0
adafruit/Adafruit BusIO@^1.14.5
adafruit/Adafruit Unified Sensor@^1.1.13
lib/AHRS
ESP32Servo
adafruit/Adafruit SPIFlash@^5.0.1