_pitch_int_node->setDoubleValue(pitch);
// add in a gyro underspin "error" if gyro is spinning too slowly
- const double spin_thresh = 0.4;
+ const double spin_thresh = 0.8;
const double max_roll_error = 40.0;
const double max_pitch_error = 12.0;
double roll_error;
#include "instrument_mgr.hxx"
#include "airspeed_indicator.hxx"
+#include "annunciator.hxx"
#include "attitude_indicator.hxx"
#include "altimeter.hxx"
#include "turn_indicator.hxx"
FGInstrumentMgr::FGInstrumentMgr ()
{
set_subsystem("asi", new AirspeedIndicator);
+ set_subsystem("annunciator", new Annunciator);
set_subsystem("ai", new AttitudeIndicator);
set_subsystem("alt", new Altimeter);
set_subsystem("ti", new TurnIndicator);