1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Björn Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
26 void tick_start(unsigned int interval_in_ms
)
31 count
= CPU_FREQ
/2 * interval_in_ms
/ 1000 / 16;
35 panicf("Error! The tick interval is too long (%d ms)\n",
40 prescale
= cpu_frequency
/ CPU_FREQ
;
41 /* Note: The prescaler is later adjusted on-the-fly on CPU frequency
42 changes within timer.c */
44 /* We are using timer 0 */
46 TRR0
= (unsigned short)(count
- 1); /* The reference count */
47 TCN0
= 0; /* reset the timer */
48 TMR0
= 0x001d | ((unsigned short)(prescale
- 1) << 8);
49 /* restart, CLK/16, enabled, prescaler */
51 TER0
= 0xff; /* Clear all events */
53 ICR1
= 0x8c; /* Interrupt on level 3.0 */
57 void TIMER0(void) __attribute__ ((interrupt_handler
));
60 /* Run through the list of tick tasks */
63 TER0
= 0xff; /* Clear all events */