Index: PersistentAlarm.c =================================================================== diff -u -rd738232bc2e11aee687d4c62fc457577825a1b30 -r85db35aef9a57d1efc02bb3b42fc802b65aa3646 --- PersistentAlarm.c (.../PersistentAlarm.c) (revision d738232bc2e11aee687d4c62fc457577825a1b30) +++ PersistentAlarm.c (.../PersistentAlarm.c) (revision 85db35aef9a57d1efc02bb3b42fc802b65aa3646) @@ -7,8 +7,8 @@ * * @file PersistentAlarm.c * -* @author (last) Quang Nguyen -* @date (last) 17-Aug-2020 +* @author (last) Sean Nash +* @date (last) 01-Oct-2020 * * @author (original) Quang Nguyen * @date (original) 17-Aug-2020 @@ -48,9 +48,8 @@ * @brief * The initPersistentAlarm function initializes the PersistentAlarm module * when the alarm count lower than maximum persistent alarm allowed. - * @details - * Inputs : none - * Outputs : PersistentAlarm module initialized + * @details Inputs: none + * @details Outputs: PersistentAlarm module initialized * @param alarmIndex Persistent alarm index * @param alarm Alarm id * @param isClearable Flag to indicate alarm is clearable or not @@ -59,7 +58,7 @@ * @return none *************************************************************************/ void initPersistentAlarm( PERSISTENT_ALARM_T alarmIndex, ALARM_ID_T alarm, BOOL isClearable, - F32 persistentClearCount, F32 persistentTriggerCount ) + U32 persistentClearCount, U32 persistentTriggerCount ) { if ( alarmIndex < NUM_OF_PERSISTENT_ALARM ) { @@ -85,9 +84,8 @@ * The checkPersistentAlarm function check whether data is out of range or * not. Then the function set or clear alarm once the persistent counter * exceeds the limit. - * @details - * Inputs : none - * Outputs : Checks for out of range data and set/clear alarm + * @details Inputs: none + * @details Outputs: Checks for out of range data and set/clear alarm * @param alarmIndex Persistent alarm index * @param isOutOfRange Flag indicates data out of range * @param data Data to be check for out of range