mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Fix MPU6000 Acc scale, doesn't fix MSP_RAW_IMU output
This commit is contained in:
parent
01777439de
commit
3d0b25b62d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue