1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * $Id: timer.h 13806 2007-07-06 21:36:32Z jethead71 $
10 * Copyright (C) 2005 Kévin Ferrare
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 ****************************************************************************/
23 #include <SDL_timer.h>
25 static int timer_prio
= -1;
26 void (*global_timer_callback
)(void);
29 Uint32
SDL_timer_callback(Uint32 interval
, void *param
){
31 global_timer_callback();
35 #define cycles_to_miliseconds(cycles) \
36 ((int)((1000*cycles)/TIMER_FREQ))
38 bool timer_register(int reg_prio
, void (*unregister_callback
)(void),
39 long cycles
, int int_prio
, void (*timer_callback
)(void))
41 (void)int_prio
;/* interrupt priority not used */
42 (void)unregister_callback
;
43 if (reg_prio
<= timer_prio
|| cycles
== 0)
46 global_timer_callback
=timer_callback
;
47 timerId
=SDL_AddTimer(cycles_to_miliseconds(cycles
), SDL_timer_callback
, 0);
51 bool timer_set_period(long cycles
)
53 SDL_RemoveTimer (timerId
);
54 timerId
=SDL_AddTimer(cycles_to_miliseconds(cycles
), SDL_timer_callback
, 0);
58 void timer_unregister(void)
60 SDL_RemoveTimer (timerId
);