Merge pull request #2934 from sambas/betaflightF7

Fix MPU6000 Acc scale, doesn't fix MSP_RAW_IMU output
This commit is contained in:
J Blackman 2017-04-27 21:52:57 +10:00 committed by GitHub
commit f6f6cc20df
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ void mpu6000SpiGyroInit(gyroDev_t *gyro)
void mpu6000SpiAccInit(accDev_t *acc)
{
acc->acc_1G = 512 * 4;
acc->acc_1G = 512 * 8;
}
bool mpu6000SpiDetect(const busDevice_t *bus)