1
0
Fork 0

Force ATC interface to run at 30 hz.

This commit is contained in:
curt 2002-08-19 01:59:26 +00:00
parent f0e40fa3f8
commit d2ba5b1883

View file

@ -87,7 +87,9 @@ static FGProtocol *parse_port_config( const string& config )
try
{
if ( protocol == "atc610x" ) {
return new FGATC610x;
FGATC610x *atc610x = new FGATC610x;
atc610x->set_hz( 30 );
return atc610x;
} else if ( protocol == "atlas" ) {
FGAtlas *atlas = new FGAtlas;
io = atlas;