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

Fixed big freq '00' bug and backlight off exit key bug.

This commit is contained in:
OneOfEleven
2023-09-20 10:20:12 +01:00
parent b9bd049dc9
commit dee38f429f
7 changed files with 22 additions and 5 deletions

View File

@ -21,6 +21,7 @@
#include "bitmaps.h"
#include "board.h"
#include "dcs.h"
#include "driver/backlight.h"
#include "driver/bk4819.h"
#include "driver/eeprom.h" // EEPROM_ReadBuffer()
#include "driver/st7565.h"
@ -393,6 +394,14 @@ void UI_DisplayMenu(void)
break;
case MENU_ABR:
if (gEeprom.BACKLIGHT == 0)
{ // turn the light on so the user can see the screen
const uint8_t value = gEeprom.BACKLIGHT;
gEeprom.BACKLIGHT = 1;
BACKLIGHT_TurnOn();
gEeprom.BACKLIGHT = value; // restore the setting
}
strcpy(String, gSubMenu_BACK_LIGHT[gSubMenuSelection]);
break;