Support MPU6000 for KakuteF7 (#8375)

Support MPU6000 for KakuteF7
This commit is contained in:
Michael Keller 2019-06-06 03:11:32 +12:00 committed by GitHub
commit 0c8c671cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,10 @@
#define USE_GYRO
#define USE_EXTI
// MPU6000
#define USE_ACC_SPI_MPU6000
#define USE_GYRO_SPI_MPU6000
// ICM-20689
#define USE_ACC_SPI_ICM20689
#define USE_GYRO_SPI_ICM20689

View File

@ -12,6 +12,7 @@ endif
TARGET_SRC = \
drivers/accgyro/accgyro_mpu.c \
drivers/accgyro/accgyro_spi_mpu6000.c \
drivers/accgyro/accgyro_spi_icm20689.c \
drivers/barometer/barometer_bmp280.c \
drivers/compass/compass_hmc5883l.c \