purple: always declare timer_scheduler

This commit is contained in:
Andrew Tridgell 2011-11-13 16:11:28 +11:00 committed by Pat Hickey
parent 2a5a15abce
commit 03c7d7bfb6
1 changed files with 2 additions and 2 deletions

View File

@ -179,15 +179,15 @@ AP_IMU_Shim imu; // never used
#error Unrecognised HIL_MODE setting.
#endif // HIL MODE
AP_TimerProcess timer_scheduler;
#if HIL_MODE != HIL_MODE_ATTITUDE
#if HIL_MODE != HIL_MODE_SENSORS
// Normal
#if CONFIG_IMU_TYPE == CONFIG_IMU_MPU6000
AP_InertialSensor_MPU6000 ins( CONFIG_MPU6000_CHIP_SELECT_PIN );
AP_TimerProcess timer_scheduler;
#else
AP_InertialSensor_Oilpan ins( &adc );
AP_TimerAperiodicProcess timer_scheduler;
#endif
AP_IMU_INS imu( &ins, Parameters::k_param_IMU_calibration );
#else