diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:57 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:57 +0000 |
| commit | c5dedd7d762f48e940ecc0bd17dd2173d59a92e1 (patch) | |
| tree | cd4d9dc085b4c40f281f17953a3e126dd1c0c02b /firmware/export/timer.h | |
| parent | 89ccd5c145e45ad541a02f38e2ad07fb916f7135 (diff) | |
| download | rockbox-c5dedd7d762f48e940ecc0bd17dd2173d59a92e1.zip rockbox-c5dedd7d762f48e940ecc0bd17dd2173d59a92e1.tar.gz rockbox-c5dedd7d762f48e940ecc0bd17dd2173d59a92e1.tar.bz2 rockbox-c5dedd7d762f48e940ecc0bd17dd2173d59a92e1.tar.xz | |
Remove the TIMER_* macros and declare target-specific functions in timer.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21559 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/timer.h')
| -rw-r--r-- | firmware/export/timer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/timer.h b/firmware/export/timer.h index 7b56330..230c0ae 100644 --- a/firmware/export/timer.h +++ b/firmware/export/timer.h @@ -40,6 +40,7 @@ #warning "TIMER_FREQ not defined" #define TIMER_FREQ CPU_FREQ #endif + bool timer_register(int reg_prio, void (*unregister_callback)(void), long cycles, void (*timer_callback)(void) IF_COP(,int core)); @@ -49,6 +50,11 @@ void timers_adjust_prescale(int multiplier, bool enable_irq); #endif void timer_unregister(void); +/* target-specific interface */ +bool timer_set(long cycles, bool start); +bool timer_start(IF_COP_VOID(int core)); +void timer_stop(void); + /* For target-specific interface use */ extern void (*pfn_timer)(void); extern void (*pfn_unregister)(void); |