Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / drv / timer_dsp56k.h
old mode 100755 (executable)
new mode 100644 (file)
index f0ff884..2e29701
@@ -1,9 +1,10 @@
-/*!
+#error This code must be revised for the new timer API
+/**
  * \file
  * <!--
- * Copyright 2004 Giovanni Bajo
  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
- * This file is part of DevLib - See devlib/README for information.
+ * Copyright 2004 Giovanni Bajo
+ * This file is part of DevLib - See README.devlib for information.
  * -->
  *
  * \version $Id$
 
 /*#*
  *#* $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.
+ *#*
  *#* Revision 1.5  2004/08/25 14:12:08  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -37,7 +53,7 @@
 
 #include "timer.h"
 #include <DSP56F807.h>
-#include <compiler.h>
+#include <cfg/compiler.h>
 #include <hw.h>
 #include <drv/irq.h>
 
 #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, arg));
+static void system_timer_isr(UNUSED(iptr_t, arg));
 
 static void timer_hw_init(void)
 {
@@ -102,6 +118,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 */