Fix delayed on-screen RSSI level update

This commit is contained in:
OneOfEleven 2023-09-29 10:04:31 +01:00
parent 74b597a6ce
commit 18409ddd01
3 changed files with 12 additions and 4 deletions

View File

@ -115,6 +115,8 @@ static void APP_CheckForIncoming(void)
{
FUNCTION_Select(FUNCTION_INCOMING);
//gUpdateDisplay = true;
updateRSSI(gEeprom.RX_CHANNEL);
gUpdateRSSI = true;
}
@ -129,6 +131,8 @@ static void APP_CheckForIncoming(void)
{
FUNCTION_Select(FUNCTION_INCOMING);
//gUpdateDisplay = true;
updateRSSI(gEeprom.RX_CHANNEL);
gUpdateRSSI = true;
}
return;
@ -149,6 +153,8 @@ static void APP_CheckForIncoming(void)
{
FUNCTION_Select(FUNCTION_INCOMING);
//gUpdateDisplay = true;
updateRSSI(gEeprom.RX_CHANNEL);
gUpdateRSSI = true;
}
return;
@ -164,6 +170,8 @@ static void APP_CheckForIncoming(void)
{
FUNCTION_Select(FUNCTION_INCOMING);
//gUpdateDisplay = true;
updateRSSI(gEeprom.RX_CHANNEL);
gUpdateRSSI = true;
}
}

Binary file not shown.

Binary file not shown.