Index: firmware/App/Modes/OperationModes.h =================================================================== diff -u -r48ca7fd644c67920acc29a80b7af379d0a134d1a -r830213bc6dcc1a684610caf78c79d55f2cb41e93 --- firmware/App/Modes/OperationModes.h (.../OperationModes.h) (revision 48ca7fd644c67920acc29a80b7af379d0a134d1a) +++ firmware/App/Modes/OperationModes.h (.../OperationModes.h) (revision 830213bc6dcc1a684610caf78c79d55f2cb41e93) @@ -1,17 +1,17 @@ /************************************************************************** * -* Copyright (c) 2024-2024 Diality Inc. - All Rights Reserved. +* Copyright (c) 2024-2026 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 OperationModes.h * -* @author (last) Vinayakam Mani -* @date (last) 05-Aug-2024 +* @author (last) Sean Nash +* @date (last) 12-Sep-2025 * * @author (original) Vinayakam Mani -* @date (original) 05-Aug-2024 +* @date (original) 07-Aug-2024 * ***************************************************************************/ @@ -21,6 +21,7 @@ #include "DDCommon.h" #include "DDDefs.h" #include "TDDefs.h" + /** * @defgroup DDOperationModes DDOperationModes * @brief Operation Modes unit. Manages the top level operation modes of the DD via a state machine. @@ -50,7 +51,7 @@ // ********** public function prototypes ********** void initOperationModes( void ); // initialize this unit -void execOperationModes( void ); // execute the operation modes state machine (scheduled periodic call) +void execDDOperationModes( 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 DD_OP_MODE_T getPreviousOperationMode( void ); // get the previous operation mode