/************************************************************************** * * Copyright (c) 2024-2025 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 DDInterface.h * * @author (last) Michael Garthwaite * @date (last) 03-Mar-2025 * * @author (original) Michael Garthwaite * @date (original) 03-Mar-2025 * ***************************************************************************/ #ifndef __DD_INTERFACE_H__ #define __DD_INTERFACE_H__ #include "ROCommon.h" #include "RODefs.h" #include "DDDefs.h" /** * @defgroup DDInterface DDInterface * @brief DD interface & monitor unit. Interfaces with and monitors the * DD (Dialysate Delivery) sub-system. * * @addtogroup DDInterface * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initDDInterface( void ); void execDDInterfaceMonitor( void ); F32 getDDPermeateFlowRate( void ); DD_OP_MODE_T getDDOpMode( void ); BOOL handleGeneratePermeateRequestMsg( MESSAGE_T *message ); /**@}*/ #endif