CF/BF - Fix incorrect ACC sensor name for ICM20608G.

It was missing the 'G' suffix when compared to the gyro names.  Now the
two sensor name strings can be de-duplicated by the linker.
This commit is contained in:
Hydra 2017-06-17 13:52:07 +01:00 committed by Dominic Clifton
parent 9d7c8fbd46
commit f0e06fcb58
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@
// sync with accelerationSensor_e // sync with accelerationSensor_e
const char * const lookupTableAccHardware[] = { const char * const lookupTableAccHardware[] = {
"AUTO", "NONE", "ADXL345", "MPU6050", "MMA8452", "BMA280", "LSM303DLHC", "AUTO", "NONE", "ADXL345", "MPU6050", "MMA8452", "BMA280", "LSM303DLHC",
"MPU6000", "MPU6500", "MPU9250", "ICM20601", "ICM20602", "ICM20608", "ICM20649", "ICM20689", "MPU6000", "MPU6500", "MPU9250", "ICM20601", "ICM20602", "ICM20608G", "ICM20649", "ICM20689",
"BMI160", "FAKE" "BMI160", "FAKE"
}; };