Index: firmware/App/Modes/OperationModes.h =================================================================== diff -u -r090cfb22a7c0b4738299c3fb411ca77aaba8d968 -rf7c714a1a09b10d85a8b013712532d37b4d7b97a --- firmware/App/Modes/OperationModes.h (.../OperationModes.h) (revision 090cfb22a7c0b4738299c3fb411ca77aaba8d968) +++ firmware/App/Modes/OperationModes.h (.../OperationModes.h) (revision f7c714a1a09b10d85a8b013712532d37b4d7b97a) @@ -22,10 +22,10 @@ #include "DDDefs.h" #include "TDDefs.h" /** - * @defgroup DGOperationModes DGOperationModes - * @brief Operation Modes module. Manages the top level operation modes of the DG via a state machine. + * @defgroup DDOperationModes DDOperationModes + * @brief Operation Modes unit. Manages the top level operation modes of the DD via a state machine. * - * @addtogroup DGOperationModes + * @addtogroup DDOperationModes * @{ */ @@ -46,9 +46,10 @@ TD_OP_MODE_T tdMode; ///< TD mode U32 tdSubMode; ///< TD submode } TD_MODE_SUB_MODE_T; + // ********** public function prototypes ********** -void initOperationModes( void ); // initialize this module +void initOperationModes( void ); // initialize this unit void execOperationModes( void ); // execute the operation modes state machine (scheduled periodic call) void requestNewOperationMode( DD_OP_MODE_T newMode ); // request a transition to a new operation mode DD_OP_MODE_T getCurrentOperationMode( void ); // get the current operation mode @@ -60,8 +61,8 @@ void getTDOperationMode( TD_MODE_SUB_MODE_T* mode ); // get TD operation mode BOOL testSetOperationMode( DD_OP_MODE_T newMode ); // Force transition to a given mode (if allowed) -BOOL testSetDGOpModePublishIntervalOverride( U32 value ); -BOOL testResetDGOpModePublishIntervalOverride( void ); +BOOL testSetDDOpModePublishIntervalOverride( U32 value ); +BOOL testResetDDOpModePublishIntervalOverride( void ); /**@}*/