Use demo as default app.
[bertos.git] / drv / adc.c
index c775e16175f0c86ba62e2fffd00e5dd92e3f14fe..c2a4b409265532a052ed7acfaa785d68cb014921 100755 (executable)
--- a/drv/adc.c
+++ b/drv/adc.c
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2006/09/13 18:30:07  bernie
+ *#* Add a FIXME.
+ *#*
+ *#* Revision 1.2  2006/07/19 12:56:25  bernie
+ *#* Convert to new Doxygen style.
+ *#*
  *#* Revision 1.1  2005/06/27 21:28:31  bernie
  *#* Import ADC driver.
  *#*
@@ -23,6 +29,8 @@
 
 #include <drv/adc.h>
 #include <drv/timer.h>
+
+// FIXME: move CPU specific part to adc_CPU.c
 #include <hw_adc.h>
 
 #include <cfg/debug.h>
@@ -31,7 +39,7 @@
 
 DB(bool adc_initialized = false;)
 
-/*!
+/**
  * Read the ADC channel \a ch.
  */
 adcread_t adc_read(uint16_t ch)
@@ -44,7 +52,7 @@ adcread_t adc_read(uint16_t ch)
        return(adc_hw_read());
 }
 
-/*!
+/**
  * Initialize the ADC hardware.
  */
 void adc_init(void)