Support MPU6000 for KakuteF7

This commit is contained in:
jamming 2019-06-04 09:03:25 +08:00
parent 7f715143da
commit 898ba30cca
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 \