Index: firmware/App/Modes/ModeSolo.h =================================================================== diff -u -rfbf04988794f0eaa8a7a596a349bae1dfff0e079 -ra504d6899e709d7432af9c055db1bd1fe340d032 --- firmware/App/Modes/ModeSolo.h (.../ModeSolo.h) (revision fbf04988794f0eaa8a7a596a349bae1dfff0e079) +++ firmware/App/Modes/ModeSolo.h (.../ModeSolo.h) (revision a504d6899e709d7432af9c055db1bd1fe340d032) @@ -18,11 +18,27 @@ #define __MODE_SOLO_H__ #include "DGCommon.h" +#include "DGDefs.h" +/** + * @defgroup DGSoloStandbyMode DGSoloStandbyMode + * @brief Solo Standby mode module. + * Manages Solo standby mode functions via a state machine. + * + * @addtogroup DGSoloStandbyMode + * @{ + */ + +// ********** 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