Browse Source

sensors: Fix code style

sbg
Lorenz Meier 9 years ago
parent
commit
f5c5f4757d
  1. 2
      src/modules/sensors/sensors.cpp

2
src/modules/sensors/sensors.cpp

@ -2216,6 +2216,7 @@ Sensors::task_main()
baro_poll(raw); baro_poll(raw);
#ifndef __PX4_POSIX #ifndef __PX4_POSIX
/* work out if main gyro timed out and fail over to alternate gyro */ /* work out if main gyro timed out and fail over to alternate gyro */
if (raw.gyro_timestamp[0] > 0 && hrt_elapsed_time(&raw.gyro_timestamp[0]) > 20 * 1000) { if (raw.gyro_timestamp[0] > 0 && hrt_elapsed_time(&raw.gyro_timestamp[0]) > 20 * 1000) {
@ -2229,6 +2230,7 @@ Sensors::task_main()
warnx("failing over to second gyro"); warnx("failing over to second gyro");
} }
} }
#endif #endif
/* check battery voltage */ /* check battery voltage */

Loading…
Cancel
Save