Index: firmware/App/Modes/ModeSolo.h =================================================================== diff -u -rc48a99d2d1c852adcc986253b6c420a90dab7bfe -rf5b02f03b6695c0c76fd8a4d902a13114e1a8aca --- firmware/App/Modes/ModeSolo.h (.../ModeSolo.h) (revision c48a99d2d1c852adcc986253b6c420a90dab7bfe) +++ firmware/App/Modes/ModeSolo.h (.../ModeSolo.h) (revision f5b02f03b6695c0c76fd8a4d902a13114e1a8aca) @@ -18,6 +18,7 @@ #define __MODE_SOLO_H__ #include "DGCommon.h" +#include "DGModes.h" /** * @defgroup SoloStandbyMode SoloStandbyMode @@ -28,12 +29,16 @@ * @{ */ +// ********** public definitions ********** + // ********** private function prototypes ********** void initSoloMode( void ); // initialize this module void transitionToSoloMode( void ); // prepares for transition to standby-solo mode -void execSoloMode( void ); // execute the standby-solo mode state machine (call from OperationModes) +U32 execSoloMode( void ); // execute the standby-solo mode state machine (call from OperationModes) +DG_SOLO_STANDBY_STATE_T getCurrentSoloState( void ); // get the current state of the standby-solo mode. + /**@}*/ #endif