-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
22 lines (21 loc) · 972 Bytes
/
platformio.ini
File metadata and controls
22 lines (21 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; 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:nucleo_l412kb]
platform = ststm32
board = nucleo_l412kb
monitor_speed = 115200
framework = arduino
build_flags =
-D BB_MARTHA
lib_deps = ; Place all your library dependencies here, for example:
adafruit/Adafruit LIS2MDL@^2.1.8 ; This is the magnetometer
adafruit/Adafruit LSM6DS@^4.7.2 ; This is the accelerometer/gyroscope
adafruit/Adafruit SPIFlash@^5.0.1 ; This allows us to write to flash chips via SPI
; Note: We have a custom BMP390 drive in the lib folder that adds some extra async functionality, but you can also use the Adafruit BMP3XX library if you want.