Index: firmware/App/Modes/ModeStandby.h =================================================================== diff -u -raf0faf02f1bd7bffcce083e9b52988a01c343d8e -r622eebf6fb7f1c6c232ffd82bc072dd30a7b3f94 --- firmware/App/Modes/ModeStandby.h (.../ModeStandby.h) (revision af0faf02f1bd7bffcce083e9b52988a01c343d8e) +++ firmware/App/Modes/ModeStandby.h (.../ModeStandby.h) (revision 622eebf6fb7f1c6c232ffd82bc072dd30a7b3f94) @@ -31,10 +31,17 @@ // ********** public definitions ********** +/// Standby mode data structure +typedef struct +{ + U32 timeout; ///< Timeout. + U32 countdown; ///< Count down. +} STANDBY_MODE_DATA_T; + // ********** public function prototypes ********** void initStandbyMode( void ); // initialize this module -U32 transitionToStandbyMode( void ); // prepares for transition to standby mode +U32 transitionToStandbyMode( void ); // prepares for transition to standby mode U32 execStandbyMode( void ); // execute the standby mode state machine (call from OperationModes) void waterSampleCommandHandler( SAMPLE_WATER_CMD_T sampleWaterCmd );