#ifndef __MODE_STANDBY_H__ #define __MODE_STANDBY_H__ #include "ROCommon.h" #include "RODefs.h" /** * @defgroup ROStandbyMode ROStandbyMode * @brief Standby mode unit. Manages the Standby mode functions via a state * machine. * * @addtogroup ROStandbyMode * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initStandbyMode( void ); // Initialize this unit U32 transitionToStandbyMode( void ); // Prepares for transition to standby mode U32 execStandbyMode( void ); // Execute the standby mode state machine (call from OperationModes) /**@}*/ #endif