#ifndef __UTILITIES_H__ #define __UTILITIES_H__ #include "BLCommon.h" /** * @defgroup Utilities Utilities * @brief Utilities unit contains various utility functions. * * @addtogroup Utilities * @{ */ // ********** public definitions ********** #define MAX_CRC_CALC_DATA_SIZE 0x8000 ///< The maximum size of data for each CRC calculation. // ********** public function prototypes ********** BOOL runFWIntegrityTest( void ); U32 crc32( U32 initialValue, U08 *address, U32 len ); U16 crc16( U08 *address, U32 len ); /**@}*/ #endif