X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Ftimer_dsp56k.h;h=e343af4a5f5383666bb27502910a027ea307b19b;hb=04cdf83948ae2bf7d6404be4d5816707092619f3;hp=f0ff8843ba87347c1ef860800fbc05e607cc7cf3;hpb=277b540c0764dd376dcf583acdc97a2b2fd3d8e6;p=bertos.git diff --git a/drv/timer_dsp56k.h b/drv/timer_dsp56k.h index f0ff8843..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$ @@ -15,6 +16,18 @@ /*#* *#* $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 *#* @@ -37,7 +50,7 @@ #include "timer.h" #include -#include +#include #include #include @@ -54,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) { @@ -102,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 */