diff --git a/README.md b/README.md index 654ab4e..16e368e 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ ENABLE_RX_SIGNAL_BAR := 1 enable a menu option for showing an ENABLE_TX_AUDIO_BAR := 1 enable a menu option for showing a TX audio level bar ENABLE_SIDE_BUTT_MENU := 1 enable menu option for configuring the programmable side buttons ENABLE_KEYLOCK := 1 enable keylock menu option + keylock code -#ENABLE_BAND_SCOPE := 0 not yet implemented - spectrum/pan-adapter +#ENABLE_PANADAPTER := 0 not yet implemented - spectrum/pan-adapter #ENABLE_SINGLE_VFO_CHAN := 0 not yet implemented - single VFO on display when possible ``` diff --git a/audio.c b/audio.c index 151562f..f083906 100644 --- a/audio.c +++ b/audio.c @@ -34,6 +34,7 @@ #endif #include "functions.h" #include "misc.h" +#include "radio.h" #include "settings.h" #include "ui/ui.h" @@ -338,7 +339,7 @@ void AUDIO_PlayBeep(beep_type_t Beep) SYSTEM_DelayMs(Delay * 10); if (g_current_function == FUNCTION_RECEIVE) - AUDIO_set_mod_mode(g_rx_vfo->am_mode); + AUDIO_set_mod_mode(g_rx_vfo->channel.am_mode); #ifdef ENABLE_FMRADIO if (g_fm_radio_mode) @@ -486,7 +487,7 @@ void AUDIO_PlayBeep(beep_type_t Beep) // unmute the radios audio if (g_current_function == FUNCTION_RECEIVE) - AUDIO_set_mod_mode(g_rx_vfo->am_mode); + AUDIO_set_mod_mode(g_rx_vfo->channel.am_mode); #ifdef ENABLE_FMRADIO if (g_fm_radio_mode) diff --git a/firmware.bin b/firmware.bin index 0f72a0e..9765673 100644 Binary files a/firmware.bin and b/firmware.bin differ diff --git a/firmware.packed.bin b/firmware.packed.bin index 25ca5df..e076a4d 100644 Binary files a/firmware.packed.bin and b/firmware.packed.bin differ