Merge pull request #6972 from mikeller/added_mpu6000_to_skyzonef405
Added MPU6000 support to SKYZONEF405 target.
This commit is contained in:
commit
f4dbbace87
|
@ -26,7 +26,7 @@ Standard 30 * 30 mm size
|
|||
Type|Description
|
||||
---|---
|
||||
MCU|STM32F405
|
||||
IMU|ICM-20689
|
||||
IMU|available with MPU6000 or ICM-20689
|
||||
IMU Interrupt|yes
|
||||
Motor outputs|up to 8
|
||||
Barometer|optional
|
||||
|
|
|
@ -47,6 +47,8 @@
|
|||
|
||||
#define USE_GYRO
|
||||
#define USE_ACC
|
||||
#define USE_GYRO_SPI_MPU6000
|
||||
#define USE_ACC_SPI_MPU6000
|
||||
#define USE_GYRO_SPI_ICM20689
|
||||
#define USE_ACC_SPI_ICM20689
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ F405_TARGETS += $(TARGET)
|
|||
FEATURES += VCP ONBOARDFLASH
|
||||
|
||||
TARGET_SRC = \
|
||||
drivers/accgyro/accgyro_spi_mpu6000.c \
|
||||
drivers/accgyro/accgyro_spi_icm20689.c \
|
||||
drivers/barometer/barometer_bmp085.c \
|
||||
drivers/barometer/barometer_bmp280.c \
|
||||
|
|
Loading…
Reference in New Issue