diff --git a/src/main/drivers/accgyro_mpu.c b/src/main/drivers/accgyro_mpu.c index 2df22a2f71..113605edfb 100644 --- a/src/main/drivers/accgyro_mpu.c +++ b/src/main/drivers/accgyro_mpu.c @@ -173,6 +173,8 @@ static void mpu6050FindRevision(void) mpuDetectionResult.resolution = MPU_HALF_RESOLUTION; } else if (revision == 2) { mpuDetectionResult.resolution = MPU_FULL_RESOLUTION; + } else if ((revision == 3) || (revision == 7)) { + mpuDetectionResult.resolution = MPU_FULL_RESOLUTION; } else { failureMode(FAILURE_ACC_INCOMPATIBLE); }