Merge pull request #123 from treymarc/patch-9

unroll loop for better code size
This commit is contained in:
dongie 2014-06-12 11:03:37 +09:00
commit f22c09630c
1 changed files with 3 additions and 4 deletions

View File

@ -62,12 +62,11 @@ void computeIMU(void)
if (mcfg.mixerConfiguration == MULTITYPE_TRI) {
gyroData[YAW] = (gyroYawSmooth * 2 + gyroADC[YAW]) / 3;
gyroYawSmooth = gyroData[YAW];
gyroData[ROLL] = gyroADC[ROLL];
gyroData[PITCH] = gyroADC[PITCH];
} else {
for (axis = 0; axis < 3; axis++)
gyroData[axis] = gyroADC[axis];
gyroData[YAW] = gyroADC[YAW];
}
gyroData[ROLL] = gyroADC[ROLL];
gyroData[PITCH] = gyroADC[PITCH];
}
// **************************************************