Merge pull request #6972 from mikeller/added_mpu6000_to_skyzonef405

Added MPU6000 support to SKYZONEF405 target.
This commit is contained in:
Michael Keller 2018-11-01 22:33:39 +13:00 committed by GitHub
commit f4dbbace87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 \