Index: firmware/App/Modes/ModeFlush.h =================================================================== diff -u -r54f45c387430e440ab4607451fc84dea61f273f1 -r5d8530d242d8065178eab9e3e5d8e4561b790e01 --- firmware/App/Modes/ModeFlush.h (.../ModeFlush.h) (revision 54f45c387430e440ab4607451fc84dea61f273f1) +++ firmware/App/Modes/ModeFlush.h (.../ModeFlush.h) (revision 5d8530d242d8065178eab9e3e5d8e4561b790e01) @@ -31,6 +31,14 @@ // ********** public definitions ********** +/// Flush mode data publish struct +typedef struct +{ + U32 flushState; ///< Flush state. + U32 overallElapsedTime; ///< Overall elapsed time in flush mode. + U32 stateElapsedTime; ///< Current flush elapsed time. +} MODE_FLUSH_DATA_T; + // ********** public function prototypes ********** void initFlushMode( void ); // initialize this module @@ -39,6 +47,8 @@ DG_FLUSH_STATE_T getCurrentFlushState( void ); // get the current state of the flush mode. +void stopDGFlush( void ); + /**@}*/ #endif