0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

Always show little original RX antenna bars, even if big RX bar/S-reading is enabled.

This commit is contained in:
OneOfEleven 2023-10-14 13:07:24 +01:00
parent 14105a4f8e
commit c5859c2bf5
3 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -355,7 +355,7 @@ void UI_UpdateRSSI(const int16_t rssi, const int vfo)
{
rssi_level = 1;
}
if (g_vfo_rssi_bar_level[vfo] == rssi_level)
return;
@ -729,11 +729,11 @@ void UI_DisplayMain(void)
else
if (mode == 2)
{ // RX signal level
#ifndef ENABLE_RSSI_BAR
//#ifndef ENABLE_RSSI_BAR
// antenna bar graph
if (g_vfo_rssi_bar_level[vfo_num] > 0)
Level = g_vfo_rssi_bar_level[vfo_num];
#endif
//#endif
}
UI_drawBars(p_line1 + LCD_WIDTH, Level);