diff --git a/src/Main/fg_io.cxx b/src/Main/fg_io.cxx index db276d884..f2f7370ff 100644 --- a/src/Main/fg_io.cxx +++ b/src/Main/fg_io.cxx @@ -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;