Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -reff7b1575f008f81b29ef906f6346fac6012d3ab -rdcbd821e41803adc6e582d909207bc97f85ff939 --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision eff7b1575f008f81b29ef906f6346fac6012d3ab) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision dcbd821e41803adc6e582d909207bc97f85ff939) @@ -7,18 +7,18 @@ * * @file ModeStandby.c * - * @date 19-Sep-2019 - * @author S. Nash + * @date 11-Dec-2019 + * @author L. Baloa * * @brief Top-level state machine for the standby mode. * **************************************************************************/ #include -#include #include "Common.h" #include "OperationModes.h" #include "ModeStandby.h" +#include "CPLD.h" // ********** private data ********** @@ -50,6 +50,10 @@ { // temporary test code - alarm lamp OK requestAlarmLampPattern( LAMP_PATTERN_OK ); + + // set User LED to off + + setUserLED(FALSE); } /************************************************************************* @@ -63,11 +67,6 @@ *************************************************************************/ void execStandbyMode( void ) { - BOOL stop = isStopButtonPressed(); - if ( TRUE == stop ) - { - requestNewOperationMode( MODE_PRES ); - } }