From f0e06fcb5828fad9cada3e93a3ba2e925496ecfb Mon Sep 17 00:00:00 2001 From: Hydra Date: Sat, 17 Jun 2017 13:52:07 +0100 Subject: [PATCH] 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. --- src/main/interface/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/interface/settings.c b/src/main/interface/settings.c index cd80656759..ec5e7206a8 100644 --- a/src/main/interface/settings.c +++ b/src/main/interface/settings.c @@ -96,7 +96,7 @@ // sync with accelerationSensor_e const char * const lookupTableAccHardware[] = { "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" };