Index: firmware/App/Modes/TreatmentStop.c =================================================================== diff -u -r57ee0134869672b53ab5b7146b8988ede8f828d6 -r7a14f1cc62ad1cb1d7d694f632ff3ddb90ca4717 --- firmware/App/Modes/TreatmentStop.c (.../TreatmentStop.c) (revision 57ee0134869672b53ab5b7146b8988ede8f828d6) +++ firmware/App/Modes/TreatmentStop.c (.../TreatmentStop.c) (revision 7a14f1cc62ad1cb1d7d694f632ff3ddb90ca4717) @@ -1,4 +1,4 @@ -/************************************************************************** +/**********************************************************************//** * * Copyright (c) 2020 Diality Inc. - All Rights Reserved. * @@ -19,44 +19,50 @@ #include "OperationModes.h" #include "TreatmentStop.h" +/** + * @addtogroup TreatmentStop + * @{ + */ + // ********** private data ********** // ********** private function prototypes ********** -/************************************************************************* +/*********************************************************************//** * @brief initTreatmentStop - * The initTreatmentStop function initializes the Treatment Mode module. + * The initTreatmentStop function initializes the Treatment Stop sub-mode + * module. * @details * Inputs : none - * Outputs : Treatment Mode module initialized. + * Outputs : Treatment Stop sub-mode module initialized. * @param none * @return none *************************************************************************/ void initTreatmentStop( void ) { } -/************************************************************************* +/*********************************************************************//** * @brief transitionToTreatmentStop * The transitionToTreatmentStop function prepares for transition to treatment \n * stop sub-mode. * @details * Inputs : none - * Outputs : + * Outputs : none * @param none * @return none *************************************************************************/ void transitionToTreatmentStop( void ) { } -/************************************************************************* +/*********************************************************************//** * @brief execTreatmentStop * The execTreatmentStop function executes the Treatment Stop sub-mode \n * state machine. * @details * Inputs : none - * Outputs : + * Outputs : none * @param none * @return none *************************************************************************/ @@ -69,3 +75,5 @@ } } +/**@}*/ +