1
0
Fork 0
forked from len0rd/rockbox

Make backlight fading work again on PP targets. The PP timer cannot handle a (real) cycle count of 1, the minimum is 2. This is now checked in timer_register() and timer_set_period().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10849 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-09-01 22:03:14 +00:00
parent e7a9ec4d13
commit 7d8c5aaf6a
2 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@ void TIMER2(void)
}
if (pfn_timer != NULL)
{
cycles_new = -1;
cycles_new = -1;
/* "lock" the variable, in case timer_set_period()
* is called within pfn_timer() */
pfn_timer();
@ -151,7 +151,7 @@ static bool timer_set(long cycles, bool start)
TCN1 = 0; /* reset the timer */
TER1 = 0xff; /* clear all events */
#elif CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002
if (cycles > 0x20000000)
if (cycles > 0x20000000 || cycles < 2)
return false;
if (start)