This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#12047 - WPS on startup doesn't work on iPod Video
Attached to Project:
Rockbox
Opened by Ophir Lojkine (lovasoa) - Thursday, 07 April 2011, 01:27 GMT+2
Last edited by Andree Buschmann (Buschel) - Thursday, 05 May 2011, 08:20 GMT+2
Opened by Ophir Lojkine (lovasoa) - Thursday, 07 April 2011, 01:27 GMT+2
Last edited by Andree Buschmann (Buschel) - Thursday, 05 May 2011, 08:20 GMT+2
|
DetailsOn my iPod video, when I choose to load the WPS on startup (either in the Settings menu or in the alarm menu), it doesn't work. The player stays on the main (root?) screen.
I had to tweak root_menu.c (which I join) to get the alarm to work with the WPS. This is not a patch, but a quick and dirty workaround that I did just to be waked up on time tomorrow... |
This task depends upon
[St.]
In the root_menu function, there is the following:
#ifdef HAVE_RTC_ALARM
if ( rtc_check_alarm_started(true) )
{
rtc_enable_alarm(false);
next_screen = GO_TO_WPS;
That I replaced with:
#ifdef HAVE_RTC_ALARM
if ( rtc_check_alarm_started(true) )
{
rtc_enable_alarm(false);
//next_screen = GO_TO_WPS;
next_screen = GO_TO_PREVIOUS_MUSIC;
I saw in the header file that GO_TO_PREVIOUS_MUSIC was deprecated. But at the moment, it works...