Index: Utilities.c =================================================================== diff -u -rd446e95ca191c753e7b876e4fde3d9b27d193c11 -r59871c9964559b5137781af9c2eeed6bab18ef73 --- Utilities.c (.../Utilities.c) (revision d446e95ca191c753e7b876e4fde3d9b27d193c11) +++ Utilities.c (.../Utilities.c) (revision 59871c9964559b5137781af9c2eeed6bab18ef73) @@ -1,20 +1,22 @@ /************************************************************************** * -* Copyright (c) 2020-2023 Diality Inc. - All Rights Reserved. +* Copyright (c) 2020-2024 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.c * -* @author (last) Dara Navaei -* @date (last) 09-Nov-2022 +* @author (last) Sean Nash +* @date (last) 07-Oct-2023 * * @author (original) Sean * @date (original) 17-Feb-2020 * ***************************************************************************/ +#include // For memcpy + #include "Common.h" #include "FPGA.h" #include "Timers.h" @@ -222,8 +224,8 @@ * in memory. * @details Inputs: none * @details Outputs: none - * @param address pointer to start address of memory range to calculate CRC for - * @param len number of bytes in the memory range to calculate CRC for + * @param buffer pointer to start address of memory range to calculate CRC for + * @param byteCount number of bytes in the memory range to calculate CRC for * @return CRC as a U08 *************************************************************************/ U08 crc4( U16* buffer, U32 byteCount )