/************************************************************************** * * Copyright (c) 2024-2025 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 ModeService.h * * @author (last) Sean Nash * @date (last) 26-Aug-2024 * * @author (original) Sean Nash * @date (original) 01-Aug-2024 * ***************************************************************************/ #ifndef __MODE_SERVICE_H__ #define __MODE_SERVICE_H__ #include "TDCommon.h" #include "TDDefs.h" /** * @defgroup TDServiceMode TDServiceMode * @brief Service mode unit. * * @addtogroup TDServiceMode * @{ */ // ********** public function prototypes ********** void initServiceMode( void ); // Initialize this unit U32 transitionToServiceMode( void ); // Prepares for transition to service mode U32 execServiceMode( void ); // Execute the service mode state machine (call from OperationModes) void signalAlarmActionToServiceMode( ALARM_ACTION_T action ); // Execute alarm action as appropriate for Service mode /**@}*/ #endif