In "Standby" mode on SPARK hardware front panel LEDs remains black regardless selected settings in VFD setup.
First suspect is neutrino-mp/source/driver/simple_display.cpp
Code: Alles auswählen
void CLCD::setled(void)
{
#if HAVE_SPARK_HARDWARE
if(mode == MODE_MENU_UTF8 || mode == MODE_TVRADIO) {
led_mode[SNeutrinoSettings::LED_MODE_STANDBY] = 0;
led_mode[SNeutrinoSettings::LED_MODE_TV] = g_settings.led_mode[SNeutrinoSettings::LED_MODE_TV];
} else if(mode == MODE_STANDBY) {
led_mode[SNeutrinoSettings::LED_MODE_STANDBY] = g_settings.led_mode[SNeutrinoSettings::LED_MODE_STANDBY];
led_mode[SNeutrinoSettings::LED_MODE_TV] = 0;
}
martii, additional unrelated question: if i want to write cyrillic symbols on VFD, i only should write a custom conversions table for ShowText() in simple_display.cpp or there something else needs to be done?