/************************************************************************** * * Copyright (c) 2019-2021 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 SampleWater.h * * @author (last) Quang Nguyen * @date (last) 19-Feb-2021 * * @author (original) Quang Nguyen * @date (original) 19-Feb-2021 * ***************************************************************************/ #ifndef __SAMPLE_WATER_H__ #define __SAMPLE_WATER_H__ #include "HDCommon.h" #include "HDDefs.h" /** * @defgroup SampleWater SampleWater * @brief SampleWater sub-mode of pre-treatment mode. This sub-mode allows user to sample water and enter manual test result. * * @addtogroup SampleWater * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initSampleWater( void ); void transitionToSampleWater( void ); void execSampleWater( void ); U32 getSampleWaterState( void ); SELF_TEST_STATUS_T getSampleWaterResult( void ); void signalSampleWaterUserAction( REQUESTED_SAMPLE_WATER_USER_ACTIONS_T action ); // from user void setSampleWaterResult( BOOL result ); // from user /**@}*/ #endif