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