/************************************************************************** * * 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 FPInterface.h * * @author (last) Vinayakam Mani * @date (last) 19-Nov-2024 * * @author (original) Vinayakam Mani * @date (original) 19-Nov-2024 * ***************************************************************************/ #ifndef __FP_INTERFACE_H__ #define __FP_INTERFACE_H__ #include "DDCommon.h" #include "MessagePayloads.h" #include "TDDefs.h" #include "FPDefs.h" /** * @defgroup FPInterface FPInterface * @brief FP interface & monitor unit. Interfaces with and monitors the * FP (Prefilteration and purification or Reverse Osmosis) sub-system. * * @addtogroup FPInterface * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initFPInterface( void ); void execFPInterfaceMonitor( void ); BOOL requestFPGeneratePermeate( RO_CMD_ID cmdID, BOOL start ); void setFPFlowRate( F32 fpFlow ); F32 getFPFlowRate( void ); /**@}*/ #endif