X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Ftimer_dsp56k.h;h=2e29701f0acc10523b76876478dd2cf1f450a24e;hb=6ec920da09a91594581c6d1a8931e72792b73525;hp=42bd4b5fe8d0f74509d4dfb5253f7673505dd78c;hpb=1981202f8c3e005f0504137204ddef70fcbc824c;p=bertos.git diff --git a/drv/timer_dsp56k.h b/drv/timer_dsp56k.h index 42bd4b5f..2e29701f 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.10 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* + *#* 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. *#* @@ -40,7 +53,7 @@ #include "timer.h" #include -#include +#include #include #include @@ -48,13 +61,13 @@ #define REG_SYSTEM_TIMER PP_CAT(REG_TIMER_, SYSTEM_TIMER) #define SYSTEM_TIMER_IRQ_VECTOR PP_CAT(IRQ_TIMER_, SYSTEM_TIMER) -//! Prescaler for the system timer +/// Prescaler for the system timer #define TIMER_PRESCALER 16 -//! Frequency of the hardware high precision timer +/// Frequency of the hardware high precision timer #define TIMER_HW_HPTICKS_PER_SEC (IPBUS_FREQ / TIMER_PRESCALER) -//! Type of time expressed in ticks of the hardware high precision timer +/// Type of time expressed in ticks of the hardware high precision timer typedef uint16_t hptime_t; static void system_timer_isr(UNUSED(iptr_t, arg));