Index: App/Modes/ModeInitPOST.c =================================================================== diff -u -r765d2c35118e202444e737c66c77faf9678cc87e -r894b734327eb6e7cfa6bf651623576bc10214195 --- App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 765d2c35118e202444e737c66c77faf9678cc87e) +++ App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 894b734327eb6e7cfa6bf651623576bc10214195) @@ -1,18 +1,18 @@ /************************************************************************* -* -* Copyright Diality, Inc. 2019-2020. All Rights Reserved. -* 181 Technology, Ste. 150 -* Irvine, CA 92618 -* -* Project Denali -* -* @file ModeInitPOST.c -* -* @brief Top-level state machine for the initialize & POST mode. -* -* @date 19-Sep-2019 -* -*************************************************************************/ + * + * Copyright Diality, Inc. 2019-2020. All Rights Reserved. + * 181 Technology, Ste. 150 + * Irvine, CA 92618 + * + * Project Denali + * + * @file ModeInitPOST.c + * + * @brief Top-level state machine for the initialize & POST mode. + * + * @date 19-Sep-2019 + * + *************************************************************************/ #include "Common.h" #include "AlarmLamp.h" @@ -33,7 +33,7 @@ * Outputs : Initialize & POST Mode module initialized. * @param none * @return none -*************************************************************************/ + *************************************************************************/ void initInitAndPOSTMode( void ) { } @@ -47,12 +47,12 @@ * Outputs : * @param none * @return none -*************************************************************************/ + *************************************************************************/ void transitionToInitAndPOSTMode( void ) { - // temporary test code - solid red alarm lamp - RequestLampPattern( LAMP_PATTERN_MANUAL ); - setCPLDLampRed( PIN_SIGNAL_HIGH ); + // temporary test code - solid red alarm lamp + RequestLampPattern( LAMP_PATTERN_MANUAL ); + setCPLDLampRed( PIN_SIGNAL_HIGH ); } /************************************************************************* @@ -63,14 +63,14 @@ * Outputs : * @param none * @return none -*************************************************************************/ + *************************************************************************/ void execInitAndPOSTMode( void ) { - BOOL stop = isStopButtonPressed(); + BOOL stop = isStopButtonPressed(); - if ( TRUE == stop ) - { - requestNewOperationMode( MODE_STAN ); - } + if ( TRUE == stop ) + { + requestNewOperationMode( MODE_STAN ); + } }