diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-29 17:44:41 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-29 17:44:41 -0700 |
commit | 39f2a3c6bd501d12a92bfd38434ce67bb5beb70d (patch) | |
tree | 73982eb2441d6426e38e455fa986ce55fc4432e8 | |
parent | 75ca1751b7cac2f8074d0713ee96d6ab45b54f19 (diff) |
Correct radio frequency shown in config display.
Radio frequency base is 434.550, not 435.550
-rw-r--r-- | ao_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao_config.c b/ao_config.c index e32dca45..593029f2 100644 --- a/ao_config.c +++ b/ao_config.c @@ -97,7 +97,7 @@ ao_config_callsign_set(void) __reentrant void ao_config_radio_channel_show(void) __reentrant { - uint32_t freq = 435550L + ao_config.radio_channel * 100L; + uint32_t freq = 434550L + ao_config.radio_channel * 100L; uint16_t mhz = freq / 1000L; uint16_t khz = freq % 1000L; |