X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fthermo.h;h=693c086dbf4884a40515863dab3a5d0448672dc8;hb=7af44c59736ad212ad0f7b0269493db8d5122dc5;hp=361f96614daa1d52431ee77e47fdf74eccd8f05f;hpb=0c2f7108e2f9b6fa567bc83dda9a313fffceb286;p=bertos.git diff --git a/drv/thermo.h b/drv/thermo.h old mode 100755 new mode 100644 index 361f9661..693c086d --- a/drv/thermo.h +++ b/drv/thermo.h @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Thermo-control driver @@ -26,6 +51,12 @@ /*#* *#* $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 +89,7 @@ void thermo_init(void); -/*! +/** * Set the target temperature at which a given device should be kept. * * \param dev Device @@ -66,26 +97,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 */