Added MPU6000 support to SKYZONEF405 target.

This commit is contained in:
mikeller 2018-10-24 01:39:40 +13:00
parent 7b8fefabb6
commit ee3f01fbad
3 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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 \