This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathplatformio.ini
62 lines (54 loc) · 1.56 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
[platformio]
default_envs = 2024_brain_rot
[env]
build_src_filter = +<*> -<devices/*> +<devices/${PIOENV}/*>
upload_protocol = dfu
debug_tool = stlink
[env:flight_computer_2022]
platform = [email protected]
board = flight_computer
framework = arduino
lib_deps =
adafruit/Adafruit GPS Library
sparkfun/SparkFun u-blox GNSS Arduino Library@^2.2.25
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
-D USBCON -D USBD_USE_CDC -D ADAFRUIT_GPS
upload_protocol = stlink
[env:2024_bottom_bun]
platform = [email protected]
board = flight_computer
framework = arduino
lib_deps =
SPI
Wire
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
-D USBCON -D USBD_USE_CDC
[env:2024_brain_rot]
platform = [email protected]
board = flight_computer
framework = arduino
lib_deps =
sparkfun/SparkFun u-blox GNSS Arduino Library@^2.2.25
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
-D USBCON -D USBD_USE_CDC -D NEO_GPS
[env:2024_megawatt]
platform = [email protected]
board = flight_computer
framework = arduino
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
-D USBCON -D USBD_USE_CDC
[env:crash_and_burn]
platform = ststm32
board = crash_and_burn
framework = arduino
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
[env:breakout]
board = flight_computer
build_flags = -std=c++17 -fno-common -Wall -Wextra -D NDEBUG
-D USBCON -D USBD_USE_CDC
[env:native]
platform = native
test_build_src = true
test_ignore = test_flight
build_src_filter = +<util.cpp> +<kalman.cpp>
build_flags = -std=c++17 -Wall -Wextra -DNATIVE_TEST -g