Index: firmware/App/Modes/ModePostTreat.h =================================================================== diff -u -r9b262ba08e3180f121c3cf19d8d25e565183f87d -r2df21d2472a8d79d78af7e359518acf3614accc5 --- firmware/App/Modes/ModePostTreat.h (.../ModePostTreat.h) (revision 9b262ba08e3180f121c3cf19d8d25e565183f87d) +++ firmware/App/Modes/ModePostTreat.h (.../ModePostTreat.h) (revision 2df21d2472a8d79d78af7e359518acf3614accc5) @@ -18,11 +18,22 @@ #define __MODE_POST_TREATMENT_H__ #include "HDCommon.h" +#include "HDDefs.h" +/** + * @defgroup HDPostTreatmentMode HDPostTreatmentMode + * @brief Post-treatment Mode module. + * + * @addtogroup HDPostTreatmentMode + * @{ + */ + // ********** private function prototypes ********** void initPostTreatmentMode( void ); // initialize this module void transitionToPostTreatmentMode( void ); // prepares for transition to post-treatment mode -void execPostTreatmentMode( void ); // execute the post-treatment mode state machine (call from OperationModes) +U32 execPostTreatmentMode( void ); // execute the post-treatment mode state machine (call from OperationModes) +/**@}*/ + #endif