mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 07:15:18 +03:00
Add MPU9150 driver.
This is a almost a complete clone of the 6050 - needs cleanup and de-duplication.
This commit is contained in:
parent
e43348598a
commit
fed6df275f
7 changed files with 411 additions and 5 deletions
|
@ -27,8 +27,9 @@ typedef enum AccelSensors {
|
|||
ACC_LSM303DLHC = 5,
|
||||
ACC_SPI_MPU6000 = 6,
|
||||
ACC_SPI_MPU6500 = 7,
|
||||
ACC_FAKE = 8,
|
||||
ACC_NONE = 9
|
||||
ACC_MPU9150 = 8,
|
||||
ACC_FAKE = 9,
|
||||
ACC_NONE = 10
|
||||
} AccelSensors;
|
||||
|
||||
extern uint8_t accHardware;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue