X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Ftimer_dsp56k.h;h=e343af4a5f5383666bb27502910a027ea307b19b;hb=04cdf83948ae2bf7d6404be4d5816707092619f3;hp=b7f325836077a90de8acbec3b4dfef7743b45894;hpb=dc20057d39d8be9a918f1eee8d3717bb6954ec6d;p=bertos.git diff --git a/drv/timer_dsp56k.h b/drv/timer_dsp56k.h index b7f32583..e343af4a 100755 --- a/drv/timer_dsp56k.h +++ b/drv/timer_dsp56k.h @@ -1,9 +1,10 @@ +#error This code must be revised for the new timer API /*! * \file * * * \version $Id$ @@ -13,28 +14,43 @@ * \brief Driver module for DSP56K */ -/* - * $Log$ - * Revision 1.4 2004/07/30 14:27:49 rasky - * Aggiornati alcuni file DSP56k per la nuova libreria di IRQ management - * - * Revision 1.3 2004/06/06 18:30:34 bernie - * Import DSP56800 changes from SC. - * - * Revision 1.2 2004/06/03 11:27:09 bernie - * Add dual-license information. - * - * Revision 1.1 2004/05/23 18:23:30 bernie - * Import drv/timer module. - * - */ +/*#* + *#* $Log$ + *#* Revision 1.9 2006/02/21 21:28:02 bernie + *#* New time handling based on TIMER_TICKS_PER_SEC to support slow timers with ticks longer than 1ms. + *#* + *#* Revision 1.8 2005/11/04 16:20:02 bernie + *#* Fix reference to README.devlib in header. + *#* + *#* Revision 1.7 2005/04/11 19:10:28 bernie + *#* Include top-level headers from cfg/ subdir. + *#* + *#* Revision 1.6 2004/11/16 22:37:14 bernie + *#* Replace IPTR with iptr_t. + *#* + *#* Revision 1.5 2004/08/25 14:12:08 rasky + *#* Aggiornato il comment block dei log RCS + *#* + *#* Revision 1.4 2004/07/30 14:27:49 rasky + *#* Aggiornati alcuni file DSP56k per la nuova libreria di IRQ management + *#* + *#* Revision 1.3 2004/06/06 18:30:34 bernie + *#* Import DSP56800 changes from SC. + *#* + *#* Revision 1.2 2004/06/03 11:27:09 bernie + *#* Add dual-license information. + *#* + *#* Revision 1.1 2004/05/23 18:23:30 bernie + *#* Import drv/timer module. + *#* + *#*/ #ifndef DRV_TIMER_DSP56K_H #define DRV_TIMER_DSP56K_H #include "timer.h" #include -#include +#include #include #include @@ -51,7 +67,7 @@ //! Type of time expressed in ticks of the hardware high precision timer typedef uint16_t hptime_t; -static void system_timer_isr(UNUSED(IPTR, arg)); +static void system_timer_isr(UNUSED(iptr_t, arg)); static void timer_hw_init(void) { @@ -99,6 +115,6 @@ INLINE hptime_t timer_hw_hpread(void) } #define DEFINE_TIMER_ISR \ - static void system_timer_isr(UNUSED(IPTR, arg)) + static void system_timer_isr(UNUSED(iptr_t, arg)) #endif /* DRV_TIMER_DSP56_H */