diff --git a/README.md b/README.md index ac23a21..4ed031f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/firmware b/firmware index eb197f0..ef20ac8 100644 Binary files a/firmware and b/firmware differ diff --git a/firmware.bin b/firmware.bin index a757ad8..034914f 100644 Binary files a/firmware.bin and b/firmware.bin differ diff --git a/firmware.packed.bin b/firmware.packed.bin index c87eb3b..d4c05e0 100644 Binary files a/firmware.packed.bin and b/firmware.packed.bin differ diff --git a/ui/menu.c b/ui/menu.c index b442397..9f78aa8 100644 --- a/ui/menu.c +++ b/ui/menu.c @@ -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; }