0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 06:39:49 +03:00

Adjusted the minimum battery volt level to give better percent accuracy

This commit is contained in:
OneOfEleven
2023-09-20 16:55:50 +01:00
parent b54b8ba638
commit 5fe4e81c79
5 changed files with 4 additions and 2 deletions

View File

@ -186,7 +186,8 @@ void UI_DisplayMain(void)
{ // frequency mode
// show the frequency band number
const unsigned int x = 2; // was 14
sprintf(String, "FB%u", 1 + gEeprom.ScreenChannel[vfo_num] - FREQ_CHANNEL_FIRST);
// sprintf(String, "FB%u", 1 + gEeprom.ScreenChannel[vfo_num] - FREQ_CHANNEL_FIRST);
sprintf(String, "VFO%u", 1 + gEeprom.ScreenChannel[vfo_num] - FREQ_CHANNEL_FIRST);
UI_PrintStringSmall(String, x, 0, Line + 1);
}
#ifdef ENABLE_NOAA