0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-29 06:41: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 * Various QS firmware bugs fixed
* Added new bugs * Added new bugs
* Finer RSSI bar steps * 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 * Nicer/cleaner big numeric font than original QS big numeric font
* Various menu re-wordings - trying to reduce 'WTH does that mean ?' * Various menu re-wordings (trying to reduce 'WTH does that mean ?')
* Extra menu items (including hidden menu freq calibration) * Extra menu items (including hidden frequency calibration)
* plus others * plus others
# Compiler # 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: case MENU_F_CALI:
{ {
sprintf(String, "%d", gSubMenuSelection); sprintf(String, "%d", gSubMenuSelection);
UI_PrintString(String, 50, 127, 1, 8); UI_PrintString(String, 50, 127, 0, 8);
const uint32_t value = 22656 + gSubMenuSelection; const uint32_t value = 22656 + gSubMenuSelection;
//gEeprom.BK4819_XTAL_FREQ_LOW = gSubMenuSelection; //gEeprom.BK4819_XTAL_FREQ_LOW = gSubMenuSelection;
@ -544,8 +544,8 @@ void UI_DisplayMenu(void)
const uint32_t xtal_Hz = (0x4f0000u + value) * 5; const uint32_t xtal_Hz = (0x4f0000u + value) * 5;
sprintf(String, "%u.%06u", xtal_Hz / 1000000, xtal_Hz % 1000000); sprintf(String, "%u.%06u", xtal_Hz / 1000000, xtal_Hz % 1000000);
UI_PrintString(String, 50, 127, 3, 8); UI_PrintString(String, 50, 127, 2, 8);
UI_PrintString("MHz", 50, 127, 5, 8); UI_PrintString("MHz", 50, 127, 4, 8);
} }
break; break;
} }