Index: Utilities.c =================================================================== diff -u -ra2e528563e541a5139218b865b2ec142b7d533bc -rcf2afaec02799525f80e803b55a0f55948c75cad --- Utilities.c (.../Utilities.c) (revision a2e528563e541a5139218b865b2ec142b7d533bc) +++ Utilities.c (.../Utilities.c) (revision cf2afaec02799525f80e803b55a0f55948c75cad) @@ -103,8 +103,8 @@ * @details * Inputs : none * Outputs : none - * @param address : pointer to start address of memory range to calculate CRC for - * @param len : # of bytes in the memory range to calculate CRC for + * @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 * @return CRC *************************************************************************/ U16 crc16( const U08 *address, U32 len ) @@ -127,8 +127,8 @@ * @details * Inputs : none * Outputs : none - * @param address : pointer to start address of memory range to calculate CRC for - * @param len : # of bytes in the memory range to calculate CRC for + * @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 * @return CRC *************************************************************************/ U08 crc8( const U08 *address, U32 len ) @@ -150,9 +150,9 @@ * @details * Inputs : none * Outputs : all time windowed count variables for a given time windowed count are initialized. - * @param cnt : ID of the time windowed count to initialize - * @param maxCnt : maximum number of instances in the time window for this count - * @param winMs : number of ms in the time window for this count + * @param cnt ID of the time windowed count to initialize + * @param maxCnt maximum number of instances in the time window for this count + * @param winMs number of ms in the time window for this count * @return none *************************************************************************/ void initTimeWindowedCount( TIME_WINDOWED_COUNT_T cnt, U32 maxCnt, U32 winMs ) @@ -204,7 +204,7 @@ * @details * Inputs : timeWindowedCounts[][], timeWindowedCountIndexes[], timeWindowedCountCounts[] * Outputs : timeWindowedCounts[][], timeWindowedCountIndexes[], timeWindowedCountCounts[] - * @param cnt : ID of the time windowed count to add an instance to + * @param cnt ID of the time windowed count to add an instance to * @return TRUE if this instances brings the count to the maximum within \n * this counts time window, otherwise FALSE *************************************************************************/ @@ -248,7 +248,7 @@ * @details * Inputs : none * Outputs : given critical data record's value is retrieved. - * @param data : Ptr to a critical data record + * @param data Ptr to a critical data record * @return The data from a critical data record *************************************************************************/ CRITICAL_DATAS_T getCriticalData( CRITICAL_DATA_T *data ) @@ -284,8 +284,8 @@ * @details * Inputs : none * Outputs : given critical data record's value is set to given value - * @param data : Ptr to a critical data record - * @param value : a value to set + * @param data Ptr to a critical data record + * @param value a value to set * @return none *************************************************************************/ void setCriticalData( CRITICAL_DATA_T *data, CRITICAL_DATAS_T value ) @@ -314,7 +314,7 @@ * @details * Inputs : none * Outputs : Given critical data record is reset - * @param data : Ptr to a critical data record + * @param data Ptr to a critical data record * @return none *************************************************************************/ void resetCriticalData( CRITICAL_DATA_T *data )