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

README.md

This commit is contained in:
OneOfEleven 2023-09-16 08:21:19 +01:00
parent 89852f3bf5
commit 934843292d
5 changed files with 8 additions and 5 deletions

View File

@ -38,9 +38,12 @@ ENABLE_COMPANDER := 1 compander option - not yet fully operat
* Various QS firmware bugs fixed
* Added new bugs
* Finer RSSI bar steps
* Mic menu includes max gain possible
* AM RX everywhere (not that AM really works)
* Better backlight times (inc always on)
* Nicer/cleaner big numeric font than original QS big numeric font
* Various menu re-wordings - trying to reduce 'WTH does that mean ?'
* Extra menu items (including hidden menu freq calibration)
* Various menu re-wordings (trying to reduce 'WTH does that mean ?')
* Extra menu items (including hidden frequency calibration)
* plus others
# Compiler

BIN
firmware

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -536,7 +536,7 @@ void UI_DisplayMenu(void)
case MENU_F_CALI:
{
sprintf(String, "%d", gSubMenuSelection);
UI_PrintString(String, 50, 127, 1, 8);
UI_PrintString(String, 50, 127, 0, 8);
const uint32_t value = 22656 + gSubMenuSelection;
//gEeprom.BK4819_XTAL_FREQ_LOW = gSubMenuSelection;
@ -544,8 +544,8 @@ void UI_DisplayMenu(void)
const uint32_t xtal_Hz = (0x4f0000u + value) * 5;
sprintf(String, "%u.%06u", xtal_Hz / 1000000, xtal_Hz % 1000000);
UI_PrintString(String, 50, 127, 3, 8);
UI_PrintString("MHz", 50, 127, 5, 8);
UI_PrintString(String, 50, 127, 2, 8);
UI_PrintString("MHz", 50, 127, 4, 8);
}
break;
}