Splash Screen not working with Mode Squelch

Post Reply
ve2wkr
Posts: 65
Joined: Thu Oct 22, 2020 11:29 pm
Location: Silverthorne, Colorado, USA

Splash Screen not working with Mode Squelch

Post by ve2wkr » Mon Apr 24, 2023 7:33 pm

HI!
In case you have not noticed, the power on splash screen does not display if the display mode is set to squelch. ( options are auto, squelch, manual)

Below is the patch to fix the problem.
73's
Luca

--- application.orig/source/applicationMain.c 2023-03-11 02:28:15.000000000 -0700
+++ application/source//applicationMain.c 2023-04-24 12:41:04.712788336 -0600
@@ -418,7 +418,7 @@
}


- if (nonVolatileSettings.backlightMode == BACKLIGHT_MODE_MANUAL)
+ if (nonVolatileSettings.backlightMode == BACKLIGHT_MODE_MANUAL || nonVolatileSettings.backlightMode == BACKLIGHT_MODE_SQUELCH)
{
displayEnableBacklight(true, 100);
}

VK3KYY
Posts: 7473
Joined: Sat Nov 16, 2019 3:25 am
Location: Melbourne, Australia

Re: Splash Screen not working with Mode Squelch

Post by VK3KYY » Mon Apr 24, 2023 8:30 pm

ve2wkr wrote:
Mon Apr 24, 2023 7:33 pm
HI!
In case you have not noticed, the power on splash screen does not display if the display mode is set to squelch. ( options are auto, squelch, manual)

Below is the patch to fix the problem.
73's
Luca

--- application.orig/source/applicationMain.c 2023-03-11 02:28:15.000000000 -0700
+++ application/source//applicationMain.c 2023-04-24 12:41:04.712788336 -0600
@@ -418,7 +418,7 @@
}


- if (nonVolatileSettings.backlightMode == BACKLIGHT_MODE_MANUAL)
+ if (nonVolatileSettings.backlightMode == BACKLIGHT_MODE_MANUAL || nonVolatileSettings.backlightMode == BACKLIGHT_MODE_SQUELCH)
{
displayEnableBacklight(true, 100);
}
Thanks for reporting this

Post Reply