#ifndef __UTILITIES_H__ #define __UTILITIES_H__ #include "BLCommon.h" /** * @defgroup Utilities Utilities * @brief Utilities unit contains various utility functions. * * @addtogroup Utilities * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** BOOL runFWIntegrityTest( U32 crcTableAddress ); U32 crc32( U32 initialValue, U08 *address, U32 len ); U16 crc16( U08 *address, U32 len ); /**@}*/ #endif