_northSouthVelocity = _gpsNode->getChild("ns-velocity-msec", 0, true);
// waypoints
- // for compatability, alias selected course down to wp/wp[1]/desired-course-deg
+ // for compatibility, alias selected course down to wp/wp[1]/desired-course-deg
SGPropertyNode* wp1Crs = _currentWayptNode->getChild("desired-course-deg", 0, true);
wp1Crs->alias(_gpsNode->getChild("desired-course-deg", 0, true));
return;
}
- // compatability feature - allow the route-manager / GPS to drive the
+ // compatibility feature - allow the route-manager / GPS to drive the
// generic autopilot heading hold *in leg mode only*
bool drive = _mode == "leg";
} else if (( name == "transponder" ) || ( name == "KT-70" )) {
if (name == "KT-70") {
- SG_LOG(SG_INSTR, SG_WARN, "KT-70 legacy instrument compatability. "
+ SG_LOG(SG_INSTR, SG_WARN, "KT-70 legacy instrument compatibility. "
"Please update aircraft to use transponder directly");
- // force configuration into compatability mode
- node->setBoolValue("kt70-compatability", true);
+ // force configuration into compatibility mode
+ node->setBoolValue("kt70-compatibility", true);
}
set_subsystem( id, new Transponder( node ), 0.2 );
{
_requiredBusVolts = node->getDoubleValue("bus-volts", 8.0);
_altitudeSourcePath = node->getStringValue("encoder-path", "/instrumentation/altimeter");
- _kt70Compat = node->getBoolValue("kt70-compatability", false);
+ _kt70Compat = node->getBoolValue("kt70-compatibility", false);
}
&Transponder::getStandbyAnnunciator );
_tiedProperties.Tie("annunciators/reply", this,
&Transponder::getReplyAnnunciator );
- } // of kt70 backwards compatability
+ } // of kt70 backwards compatibility
}
void Transponder::unbind()
KNOB_ALT
};
- // annunciators, for KT-70 compatability only
+ // annunciators, for KT-70 compatibility only
// these should be replaced with conditionals in the instrument
bool getFLAnnunciator() const;
bool getAltAnnunciator() const;