/************************************************************************** * * Copyright (c) 2019-2019 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 FPGA.h * * @date 21-Oct-2019 * @author S. Nash * * @brief header file for FPGA Interface service . * **************************************************************************/ #ifndef __FPGA_H__ #define __FPGA_H__ #include "Common.h" // ********** public definitions ********** // ********** public function prototypes ********** void initFPGA( void ); void execFPGA( void ); U08 getFPGAVersion( void ); U08 getFPGADiag( void ); void setFPGADiag( void ); DATA_GET_PROTOTYPE( TWO_WAY_STATE_T, getArterialBloodValveState ); BOOL dialinSetArterialBloodValveStateOverride( TWO_WAY_STATE_T state ); BOOL dialinResetArterialBloodValveStateOverride( void ); #endif