From d2ba5b188380f06397981a2650ac503599cbd1b0 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 19 Aug 2002 01:59:26 +0000 Subject: [PATCH] Force ATC interface to run at 30 hz. --- src/Main/fg_io.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.39.5