/************************************************************************** * * 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 ModePrescription.h * * @date 19-Sep-2019 * @author S. Nash * * @brief Header file for Prescription Mode. * **************************************************************************/ #ifndef __MODE_PRESCRIPTION_H__ #define __MODE_PRESCRIPTION_H__ // ********** private function prototypes ********** void initPrescriptionMode( void ); // initialize this module void transitionToPrescriptionMode( void ); // prepares for transition to prescription mode void execPrescriptionMode( void ); // execute the prescription mode state machine (call from OperationModes) #endif