1
0
Fork 0
forked from len0rd/rockbox

plugins: HAVE_BACKLIGHT in the test plugins

Change-Id: I97d17805ac7d37f10da6a29684102db97448e653
This commit is contained in:
Solomon Peachy 2020-07-24 19:42:32 -04:00
parent 9be5bc4cf0
commit e49c1af570
5 changed files with 22 additions and 8 deletions

View file

@ -123,9 +123,9 @@ enum plugin_status plugin_start(const void* parameter)
}
for (i = 0; i <= STEPS; i++)
input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS;
#ifdef HAVE_BACKLIGHT
backlight_ignore_timeout();
#endif
grey_set_background(0); /* set background to black */
grey_clear_display();
grey_show(true);
@ -221,6 +221,8 @@ enum plugin_status plugin_start(const void* parameter)
}
grey_release();
#ifdef HAVE_BACKLIGHT
backlight_use_settings();
#endif
return PLUGIN_OK;
}