mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-19 06:39:49 +03:00
More counter renames + dual watch active indicator
This commit is contained in:
@ -76,7 +76,7 @@ void UI_DisplayMain(void)
|
||||
}
|
||||
|
||||
if (gEeprom.DUAL_WATCH != DUAL_WATCH_OFF && gRxVfoIsActive)
|
||||
Channel = gEeprom.RX_CHANNEL;
|
||||
Channel = gEeprom.RX_CHANNEL; // we're currently monitoring the other VFO
|
||||
|
||||
if (Channel != vfo_num)
|
||||
{
|
||||
|
@ -55,8 +55,13 @@ void UI_DisplayStatus(const bool test_display)
|
||||
#endif
|
||||
|
||||
if (gEeprom.DUAL_WATCH != DUAL_WATCH_OFF || test_display)
|
||||
memmove(gStatusLine + 45, BITMAP_TDR, sizeof(BITMAP_TDR));
|
||||
|
||||
{
|
||||
if (gDualWatchActive)
|
||||
memmove(gStatusLine + 45, BITMAP_TDR1, sizeof(BITMAP_TDR1));
|
||||
else
|
||||
memmove(gStatusLine + 45, BITMAP_TDR2, sizeof(BITMAP_TDR2));
|
||||
}
|
||||
|
||||
if (gEeprom.CROSS_BAND_RX_TX != CROSS_BAND_OFF || test_display)
|
||||
memmove(gStatusLine + 58, BITMAP_XB, sizeof(BITMAP_XB));
|
||||
|
||||
|
Reference in New Issue
Block a user