Add definition when not in _DEBUG mode.
[bertos.git] / bertos / algo / crc.h
index 51ce4dd0f8c23ba6932194e69b7e3546983f08e3..483f2192cf29916ba0e366ab604286b5c3e0d2a3 100644 (file)
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
- * $WIZARD_MODULE = {
- * "name" : "crc16",
- * "depends" : [],
- * "configuration" : ""
- * }
+ * $WIZ$ module_name = "crc16"
  */
 
 #ifndef ALGO_CRC_H
@@ -81,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)
 {