Add a localizer audio ident class
This will be needed soon in the new navradio code.
This commit is contained in:
parent
dbda2fb95d
commit
478e771632
2 changed files with 11 additions and 1 deletions
|
@ -135,7 +135,12 @@ VORAudioIdent::VORAudioIdent( const std::string & fx_name )
|
|||
//FIXME: LOCAudioIdent at approx 7wpm (ICAO Annex 10 - 3.1.3.9.4)
|
||||
// not less than six times per minute at approx equal intervals
|
||||
// frequency 1020+/-50Hz (3.1.3.9.2)
|
||||
LOCAudioIdent::LOCAudioIdent( const std::string & fx_name )
|
||||
: AudioIdent( fx_name, 10, FGMorse::LO_FREQUENCY )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// FIXME: NDBAudioIdent at approx 7 wpm (ICAO ANNEX 10 - 3.4.5.1)
|
||||
// at least once every 10s (3.4.5.2.1)
|
||||
// frequency 1020+/-50Hz or 400+/-25Hz (3.4.5.4)
|
||||
// frequency 1020+/-50Hz or 400+/-25Hz (3.4.5.4)
|
||||
|
|
|
@ -62,4 +62,9 @@ public:
|
|||
VORAudioIdent( const std::string & fx_name );
|
||||
};
|
||||
|
||||
class LOCAudioIdent : public AudioIdent {
|
||||
public:
|
||||
LOCAudioIdent( const std::string & fx_name );
|
||||
};
|
||||
|
||||
#endif // _FGAUDIOIDENT_HXX
|
||||
|
|
Loading…
Add table
Reference in a new issue