Index: App/Modes/ModePostTreat.c =================================================================== diff -u -r765d2c35118e202444e737c66c77faf9678cc87e -r894b734327eb6e7cfa6bf651623576bc10214195 --- App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 765d2c35118e202444e737c66c77faf9678cc87e) +++ App/Modes/ModePostTreat.c (.../ModePostTreat.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 ModePostTreat.c -* -* @brief Top-level state machine for the post-treatment mode. -* -* @date 19-Sep-2019 -* -*************************************************************************/ + * + * Copyright Diality, Inc. 2019-2020. All Rights Reserved. + * 181 Technology, Ste. 150 + * Irvine, CA 92618 + * + * Project Denali + * + * @file ModePostTreat.c + * + * @brief Top-level state machine for the post-treatment mode. + * + * @date 19-Sep-2019 + * + *************************************************************************/ #include "Common.h" #include "AlarmLamp.h" @@ -32,7 +32,7 @@ * Outputs : Post-Treatment Mode module initialized. * @param none * @return none -*************************************************************************/ + *************************************************************************/ void initPostTreatmentMode( void ) { } @@ -46,11 +46,11 @@ * Outputs : * @param none * @return none -*************************************************************************/ + *************************************************************************/ void transitionToPostTreatmentMode( void ) { - // temporary test code - alarm lamp high alarm - RequestLampPattern( LAMP_PATTERN_HIGH_ALARM ); + // temporary test code - alarm lamp high alarm + RequestLampPattern( LAMP_PATTERN_HIGH_ALARM ); } /************************************************************************* @@ -61,14 +61,14 @@ * Outputs : * @param none * @return none -*************************************************************************/ + *************************************************************************/ void execPostTreatmentMode( void ) { - BOOL stop = isStopButtonPressed(); + BOOL stop = isStopButtonPressed(); - if ( TRUE == stop ) - { - requestNewOperationMode( MODE_STAN ); - } + if ( TRUE == stop ) + { + requestNewOperationMode( MODE_STAN ); + } }