doc: Add timer module documentation.
[bertos.git] / bertos / algo / crc.h
index bc442b7e19d942356c665c139eb4dce1df257bdf..483f2192cf29916ba0e366ab604286b5c3e0d2a3 100644 (file)
@@ -31,7 +31,7 @@
  *
  * -->
  *
- * \brief XModem-CRC16 algorithm (interface)
+ * \brief Cyclic Redundancy Check 16 (CRC).
  *
  * \note This algorithm is incompatible with the CCITT-CRC16.
  *
@@ -45,6 +45,8 @@
  *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZ$ module_name = "crc16"
  */
 
 #ifndef ALGO_CRC_H
@@ -75,7 +77,7 @@ extern const uint16_t crc16tab[256];
 
 #ifdef INLINE
 /**
- * \brief Compute the updated CRC16 value for one octet (macro version)
+ * \brief Compute the updated CRC16 value for one octet (inline version)
  */
 INLINE uint16_t updcrc16(uint8_t c, uint16_t oldcrc)
 {