1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 07:15:18 +03:00

Added MPU9250 ACC detection.

This commit is contained in:
Anders Hoglund 2016-08-09 14:52:22 +02:00
parent 8c3622eb3a
commit 1300952472
3 changed files with 25 additions and 10 deletions

View file

@ -20,15 +20,16 @@
// Type of accelerometer used/detected
typedef enum {
ACC_DEFAULT = 0,
ACC_NONE = 1,
ACC_ADXL345 = 2,
ACC_MPU6050 = 3,
ACC_MMA8452 = 4,
ACC_BMA280 = 5,
ACC_LSM303DLHC = 6,
ACC_MPU6000 = 7,
ACC_MPU6500 = 8,
ACC_FAKE = 9,
ACC_NONE,
ACC_ADXL345,
ACC_MPU6050,
ACC_MMA8452,
ACC_BMA280,
ACC_LSM303DLHC,
ACC_MPU6000,
ACC_MPU6500,
ACC_MPU9250,
ACC_FAKE,
ACC_MAX = ACC_FAKE
} accelerationSensor_e;