mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Add support for LSM6DSO gyro/acc
Also supports the LSM6DSOX variant which has the additional machine learning core (not used by Betaflight).
This commit is contained in:
parent
97ad043f9e
commit
99a9543968
13 changed files with 403 additions and 5 deletions
|
@ -129,14 +129,14 @@
|
|||
const char * const lookupTableAccHardware[] = {
|
||||
"AUTO", "NONE", "ADXL345", "MPU6050", "MMA8452", "BMA280", "LSM303DLHC",
|
||||
"MPU6000", "MPU6500", "MPU9250", "ICM20601", "ICM20602", "ICM20608G", "ICM20649", "ICM20689", "ICM42605",
|
||||
"BMI160", "BMI270", "FAKE"
|
||||
"BMI160", "BMI270", "LSM6DSO", "FAKE"
|
||||
};
|
||||
|
||||
// sync with gyroHardware_e
|
||||
const char * const lookupTableGyroHardware[] = {
|
||||
"AUTO", "NONE", "MPU6050", "L3G4200D", "MPU3050", "L3GD20",
|
||||
"MPU6000", "MPU6500", "MPU9250", "ICM20601", "ICM20602", "ICM20608G", "ICM20649", "ICM20689", "ICM42605",
|
||||
"BMI160", "BMI270", "FAKE"
|
||||
"BMI160", "BMI270", "LSM6SDO", "FAKE"
|
||||
};
|
||||
|
||||
#if defined(USE_SENSOR_NAMES) || defined(USE_BARO)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue