Index: firmware/App/Controllers/AlarmLamp.c =================================================================== diff -u -rd9d085cdca67200ecddbdfbc75c489e704b23081 -r37a8a58b766a496b39241dd7ae46dc10dbda35e4 --- firmware/App/Controllers/AlarmLamp.c (.../AlarmLamp.c) (revision d9d085cdca67200ecddbdfbc75c489e704b23081) +++ firmware/App/Controllers/AlarmLamp.c (.../AlarmLamp.c) (revision 37a8a58b766a496b39241dd7ae46dc10dbda35e4) @@ -90,9 +90,8 @@ /*********************************************************************//** * @brief * The initAlarmLamp function initializes the AlarmLamp module. - * @details - * Inputs : none - * Outputs : AlarmLamp module initialized. + * @details Inputs: none + * @details Outputs: AlarmLamp module initialized. * @return none *************************************************************************/ void initAlarmLamp( void ) @@ -110,10 +109,9 @@ * @brief * The execAlarmLamp function executes the alarm lamp service for the * current lamp pattern. - * @details - * Inputs : pendingLampPattern, currentLampPattern, lampPatternStepTimer, + * @details Inputs: pendingLampPattern, currentLampPattern, lampPatternStepTimer, * lampPatterns. - * Outputs : currentLampPattern + * @details Outputs: currentLampPattern * @return none *************************************************************************/ void execAlarmLamp( void ) @@ -153,9 +151,8 @@ /*********************************************************************//** * @brief * The requestAlarmLampPattern function sets a request for a new lamp pattern. - * @details - * Inputs : none - * Outputs : pendingLampPattern + * @details Inputs: none + * @details Outputs: pendingLampPattern * @param lampPattern new lamp pattern * @return none *************************************************************************/ @@ -175,9 +172,8 @@ * @brief * The getCurrentAlarmLampPattern function gets the current alarm lamp * pattern in effect. - * @details - * Inputs : currentLampPattern - * Outputs : none + * @details Inputs: currentLampPattern + * @details Outputs: none * @return currentLampPattern *************************************************************************/ LAMP_PATTERN_T getCurrentAlarmLampPattern( void ) @@ -195,9 +191,8 @@ /*********************************************************************//** * @brief * The getAlarmLampOn function gets the current alarm lamp on flag. - * @details - * Inputs : alarmLampOn - * Outputs : none + * @details Inputs: alarmLampOn + * @details Outputs: none * @return alarmLampOn *************************************************************************/ BOOL getAlarmLampOn( void ) @@ -210,9 +205,8 @@ * The execAlarmLampTest function executes the alarm lamp test. * This function should be called periodically until a pass or fail * result is returned. - * @details - * Inputs : alarmLampSelfTestState, alarmLampSelfTestStepTimerCount - * Outputs : alarmLampSelfTestState, alarmLampSelfTestStepTimerCount + * @details Inputs: alarmLampSelfTestState, alarmLampSelfTestStepTimerCount + * @details Outputs: alarmLampSelfTestState, alarmLampSelfTestStepTimerCount * @return in progress, passed, or failed *************************************************************************/ SELF_TEST_STATUS_T execAlarmLampTest( void ) @@ -273,9 +267,8 @@ * @brief * The setAlarmLampToPatternStep function sets the lamps according to the * current lamp pattern and lamp pattern step. - * @details - * Inputs : lampPatterns[], currentLampPatternStep - * Outputs : lampPatternStepTimer reset. Lamps set per current pattern. + * @details Inputs: lampPatterns[], currentLampPatternStep + * @details Outputs: lampPatternStepTimer reset. Lamps set per current pattern. * @return none *************************************************************************/ static void setAlarmLampToPatternStep( void ) @@ -319,9 +312,8 @@ * @brief * The testSetCurrentLampPatternOverride function overrides the state of the * current alarm lamp pattern with a given pattern. - * @details - * Inputs : none - * Outputs : currentLampPattern + * @details Inputs: none + * @details Outputs: currentLampPattern * @param value override state for the alarm lamp pattern * @return TRUE if override successful, FALSE if not *************************************************************************/ @@ -343,9 +335,8 @@ * @brief * The testResetCurrentLampPatternOverride function resets the override of the * state of the alarm lamp pattern. - * @details - * Inputs : none - * Outputs : currentLampPattern + * @details Inputs: none + * @details Outputs: currentLampPattern * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetCurrentLampPatternOverride( void )