Skip to main content

Set Maximim Frequency

Sets the maximum frequency of a COMM, NAV or ADF instrument. For ADF, the 5th and 6th digits have no meaning. When the maximum frequency is reached by incrementing, the instrument automatically loops to the minimum frequency. Also, see the remarks.

See RNS Features in the beginning of this chapter for more detail.

Request

012345678910111213141516171819202122232425262728293031
ID25IXXXYYY

Request Structure

ByteValueSizeTypeDescriptionCOMM/NAVADF
0ID1BINRNS address (ID)
1251BINSet Minimum Frequency instr. code
2I1BIN0-NAV, 1-Comm, 2-ADF
3X1BIN1st digit1st integer1st upper
4X1BIN2nd digit2nd integer2nd upper
5X1BIN3rd digit3rd integer1st lower
6Y1BIN4th digit1st decimal2nd lower
7Y1BIN5th digit2nd decimal-
8Y1BIN6th digit3rd decimal-

Response

012345678910111213141516171819202122232425262728293031
ID25V

Response Structure

ByteValueSizeTypeDescription
0ID1BINRNS address (ID)
1251BINSet Minimum Frequency instruction code
2V1BIN1 for successful, 0 otherwise

Factory Default Values

InstrumentIncrement
NAV117.950
COMM136.975
ADF9999

Remarks

Setting the maximum frequency of a COMM or NAV (but not for the ADF) should be done with care to ensure the expected behavior. The maximum frequencies are directly related to the minimum frequencies and the increments.

Looking at the factory default values, the NAV maximum frequency is set to 117.950, not 118.000. This is due to the relationship between the minimum frequency and the increments.

The maximum frequency can be calculated as follows:


Calculation Example 1 (Decimal Increment):

Parameters:

  • Minimum Frequency: 108.000
  • Target Maximum Frequency: 118.000
  • Decimal Increment: 50

Steps:

  1. Delta = Maximum Frequency – Minimum Frequency Delta = 118000 - 108000 = 10000

  2. Steps = (Delta / Increment) - 1 Steps = (10000 / 50) - 1 = 199

  3. Range = Steps * Increment Range = 199 * 50 = 9950

  4. Result = Minimum Frequency + Range Result = 108000 + 9950 = 117950

Result: The maximum frequency is 117.950.


Calculation Example 2 (Integer Increment):

Parameters:

  • Minimum Frequency: 108
  • Target Maximum Frequency: 118
  • Integer Increment: 1

Steps:

  1. Delta = Maximum Frequency – Minimum Frequency Delta = 118 - 108 = 10

  2. Steps = (Delta / Increment) - 1 Steps = (10 / 1) - 1 = 9

  3. Range = Steps * Increment Range = 9 * 1 = 9

  4. Result = Minimum Frequency + Range Result = 108 + 9 = 117

Result: The maximum frequency is 117.


Tips:

  1. For Consistency: These calculations can be automated by interfacing software.

  2. Quick Calculation Shortcut: Knowing that increments and frequencies are multiples of each other, you can subtract one increment from the target maximum frequency to obtain the same result. Example: 118000 - 50 = 117950

    Ensure that both the minimum and maximum frequencies are multiples of the increment. For instance:

    • 108000 / 50 = 2160 (integer, no fraction)
    • 118000 / 50 = 2360 (integer, no fraction)

    This confirms both are valid multiples.

Examples

Set COMM Maximum Frequency to 129.975 ( target = 130.000, increment 25):

012345678910111213141516171819202122232425262728293031
ID251129975

Set COMM Maximum Frequency to 125.475 ( target = 125.500, increment 25):

012345678910111213141516171819202122232425262728293031
ID250125475

Set ADF Maximum Frequency to 500 :

012345678910111213141516171819202122232425262728293031
ID2520500