Sansa AMS: Revert r21177 : the timer frequency is used by the user timer (example: metronome will be twice too fast)

Instead use a private KERNEL_TIMER_FREQ define which is dependant on HAVE_SCROLLWHEEL
Comment that call_tick_tasks() will read the scrollwheel
Remove the unneeded volatile type qualifier from poll_scrollwheel

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21187 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2009-06-04 14:50:07 +00:00
parent aa7b081bad
commit 2409c28f21
2 changed files with 13 additions and 12 deletions

View file

@ -24,19 +24,27 @@
#include "panic.h"
#include "timer-target.h"
#ifdef HAVE_SCROLLWHEEL
/* let the timer interrupt twice as often for the scrollwheel polling */
#define KERNEL_TIMER_FREQ (TIMER_FREQ/2)
#else
#define KERNEL_TIMER_FREQ TIMER_FREQ
#endif
#ifdef HAVE_SCROLLWHEEL
#include "button-target.h"
/* The scrollwheel is polled every 5 ms (the tick tasks only every 10) */
static volatile int poll_scrollwheel = 0;
static int poll_scrollwheel = 0;
void INT_TIMER2(void)
{
if (!poll_scrollwheel)
call_tick_tasks(); /* Run through the list of tick tasks */
call_tick_tasks(); /* Run through the list of tick tasks
* (that includes reading the scrollwheel) */
else
{
if (!button_hold())
button_read_dbop();
button_read_dbop(); /* Read the scrollwheel */
}
poll_scrollwheel ^= 1;
@ -55,7 +63,7 @@ void tick_start(unsigned int interval_in_ms)
{
int phi = 0; /* prescaler bits */
int prescale = 1;
int cycles = TIMER_FREQ / 1000 * interval_in_ms;
int cycles = KERNEL_TIMER_FREQ / 1000 * interval_in_ms;
while(cycles > 0x10000)
{

View file

@ -25,14 +25,7 @@ bool __timer_set(long cycles, bool set);
bool __timer_register(void);
void __timer_unregister(void);
#ifdef HAVE_SCROLLWHEEL
/* The scrollwheel is polled every 5 ms (the tick tasks still every 10ms) */
#define TIMER_DIV (16*2)
#else
#define TIMER_DIV (16)
#endif
#define TIMER_FREQ (24000000 / TIMER_DIV)
#define TIMER_FREQ (24000000 / 16)
#define __TIMER_SET(cycles, set) \
__timer_set(cycles, set)