/************************************************************************** * * Copyright (c) 2024-2026 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Utilities.h * * @author (last) Dara Navaei * @date (last) 20-Apr-2026 * * @author (original) Dara Navaei * @date (original) 06-Aug-2024 * ***************************************************************************/ #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