1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Merge pull request #118 from treymarc/patch-2

Update mw.c
This commit is contained in:
dongie 2014-06-06 19:54:26 +09:00
commit f4a08baac3

View file

@ -824,12 +824,12 @@ void loop(void)
loopTime = currentTime + mcfg.looptime; loopTime = currentTime + mcfg.looptime;
computeIMU(); computeIMU();
annexCode();
// Measure loop rate just afer reading the sensors // Measure loop rate just afer reading the sensors
currentTime = micros(); currentTime = micros();
cycleTime = (int32_t)(currentTime - previousTime); cycleTime = (int32_t)(currentTime - previousTime);
previousTime = currentTime; previousTime = currentTime;
// non IMU critical, temeperatur, serialcom
annexCode();
#ifdef MAG #ifdef MAG
if (sensors(SENSOR_MAG)) { if (sensors(SENSOR_MAG)) {
if (abs(rcCommand[YAW]) < 70 && f.MAG_MODE) { if (abs(rcCommand[YAW]) < 70 && f.MAG_MODE) {