X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Falgo%2Fcrc.h;h=483f2192cf29916ba0e366ab604286b5c3e0d2a3;hb=112e4b3e452a74564698d4b6dbc020532c200dc8;hp=bc442b7e19d942356c665c139eb4dce1df257bdf;hpb=4cc44c9888a0336b9d01121ec0b7ad95f4a76195;p=bertos.git diff --git a/bertos/algo/crc.h b/bertos/algo/crc.h index bc442b7e..483f2192 100644 --- a/bertos/algo/crc.h +++ b/bertos/algo/crc.h @@ -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 + * + * $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) {