/*********************************************************************** * * Copyright Diality, Inc. 2019-2020. All Rights Reserved. * 181 Technology, Ste. 150 * Irvine, CA 92618 * * Project Denali * * @file ModeStandby.h * * @brief Header file for Standby Mode. * * @date 19-Sep-2019 * *************************************************************************/ #ifndef __MODE_STANDBY_H__ #define __MODE_STANDBY_H__ // ********** private function prototypes ********** void initStandbyMode( void ); // initialize this module void transitionToStandbyMode( void ); // prepares for transition to standby mode void execStandbyMode( void ); // execute the standby mode state machine (call from OperationModes) #endif