/************************************************************************** * * Copyright (c) 2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Dialysis.c * * @date 15-Jan-2020 * @author S. Nash * * @brief State machine for the dialysis sub-mode of treatment mode. * **************************************************************************/ #include "Dialysis.h" #include "OperationModes.h" #include "ModeTreatment.h" // ********** private data ********** // ********** private function prototypes ********** /************************************************************************* * @brief initDialysis * The initDialysis function initializes the Dialysis module. * @details * Inputs : none * Outputs : Dialysis module initialized. * @param none * @return none *************************************************************************/ void initDialysis( void ) { } /************************************************************************* * @brief transitionToDialysis * The transitionToDialysis function prepares for transition to dialysis sub-mode. * @details * Inputs : none * Outputs : * @param none * @return none *************************************************************************/ void transitionToDialysis( void ) { } /************************************************************************* * @brief execDialysis * The execDialysis function executes the Dialysis sub-mode state machine. * @details * Inputs : none * Outputs : * @param none * @return none *************************************************************************/ void execDialysis( void ) { }