Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / drv / thermo.h
old mode 100755 (executable)
new mode 100644 (file)
index 361f966..8f749a3
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2004, 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2006/09/20 20:12:41  marco
+ *#* Names convention, MOD_* macros.
+ *#*
+ *#* Revision 1.2  2006/07/19 12:56:26  bernie
+ *#* Convert to new Doxygen style.
+ *#*
  *#* Revision 1.1  2005/11/04 17:59:47  bernie
  *#* Import into DevLib.
  *#*
@@ -58,7 +64,7 @@
 void thermo_init(void);
 
 
-/*!
+/**
  * Set the target temperature at which a given device should be kept.
  *
  * \param dev Device
@@ -66,26 +72,26 @@ void thermo_init(void);
  */
 void thermo_setTarget(ThermoDev dev, deg_t temperature);
 
-/*! Start thermo control for a certain device \a dev */
+/** Start thermo control for a certain device \a dev */
 void thermo_start(ThermoDev dev);
 
-/*! Stop thermo control for a certain device \a dev */
+/** Stop thermo control for a certain device \a dev */
 void thermo_stop(ThermoDev dev);
 
-/*! Clear errors for channel \a dev */
+/** Clear errors for channel \a dev */
 void thermo_clearErrors(ThermoDev dev);
 
-/*! Return the status of the specific \a dev thermo-device. */
+/** Return the status of the specific \a dev thermo-device. */
 thermostatus_t thermo_status(ThermoDev dev);
 
-/*!
+/**
  * Return the current temperature of a device currently under thermo
  * control.
  *
  * \param dev Device
  * \return Current temperature (Celsius degrees * 10)
  */
-deg_t thermo_read_temperature(ThermoDev dev);
+deg_t thermo_readTemperature(ThermoDev dev);
 
 
 #endif /* DRV_THERMO_H */