/************************************************************************** * * Copyright (c) 2024-2024 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 TDInterface.h * * @author (last) Vinayakam Mani * @date (last) 28-Oct-2024 * * @author (original) Vinayakam Mani * @date (original) 28-Oct-2024 * ***************************************************************************/ #ifndef __TD_INTERFACE_H__ #define __TD_INTERFACE_H__ #include "DDCommon.h" #include "TDDefs.h" /** * @defgroup TDInterface TDInterface * @brief TD interface & monitor unit. Interfaces with and monitors the * TD (Treatment Delivery) sub-system. * * @addtogroup TDInterface * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initTDInterface( void ); void execTDInterfaceMonitor( void ); TD_OP_MODE_T getTDOpMode( void ); U32 getTDSubMode( void ); void setTDOpMode( U32 opMode, U32 subMode ); F32 getTDDialysateFlowrate( void ); /**@}*/ #endif