mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 09:45:37 +03:00
Merge pull request #6972 from mikeller/added_mpu6000_to_skyzonef405
Added MPU6000 support to SKYZONEF405 target.
This commit is contained in:
commit
f4dbbace87
3 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,7 @@ Standard 30 * 30 mm size
|
||||||
Type|Description
|
Type|Description
|
||||||
---|---
|
---|---
|
||||||
MCU|STM32F405
|
MCU|STM32F405
|
||||||
IMU|ICM-20689
|
IMU|available with MPU6000 or ICM-20689
|
||||||
IMU Interrupt|yes
|
IMU Interrupt|yes
|
||||||
Motor outputs|up to 8
|
Motor outputs|up to 8
|
||||||
Barometer|optional
|
Barometer|optional
|
||||||
|
|
|
@ -47,6 +47,8 @@
|
||||||
|
|
||||||
#define USE_GYRO
|
#define USE_GYRO
|
||||||
#define USE_ACC
|
#define USE_ACC
|
||||||
|
#define USE_GYRO_SPI_MPU6000
|
||||||
|
#define USE_ACC_SPI_MPU6000
|
||||||
#define USE_GYRO_SPI_ICM20689
|
#define USE_GYRO_SPI_ICM20689
|
||||||
#define USE_ACC_SPI_ICM20689
|
#define USE_ACC_SPI_ICM20689
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ F405_TARGETS += $(TARGET)
|
||||||
FEATURES += VCP ONBOARDFLASH
|
FEATURES += VCP ONBOARDFLASH
|
||||||
|
|
||||||
TARGET_SRC = \
|
TARGET_SRC = \
|
||||||
|
drivers/accgyro/accgyro_spi_mpu6000.c \
|
||||||
drivers/accgyro/accgyro_spi_icm20689.c \
|
drivers/accgyro/accgyro_spi_icm20689.c \
|
||||||
drivers/barometer/barometer_bmp085.c \
|
drivers/barometer/barometer_bmp085.c \
|
||||||
drivers/barometer/barometer_bmp280.c \
|
drivers/barometer/barometer_bmp280.c \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue