doc: crc16: add to doxygen group
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
a6f44500b0
commit
198551df40
|
@ -3,7 +3,6 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/** @file
|
||||
* @brief CRC 16 computation function
|
||||
*/
|
||||
|
@ -15,6 +14,16 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
/**
|
||||
* @defgroup checksum Checksum
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup crc16 CRC 16
|
||||
* @ingroup checksum
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Generic function for computing CRC 16
|
||||
*
|
||||
|
@ -65,4 +74,7 @@ static inline u16_t crc16_ansi(const u8_t *src, size_t len)
|
|||
return crc16(src, len, 0x8005, 0xffff, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue