Index: firmware/App/Services/Messaging.h =================================================================== diff -u -rd9b5f588d81e15ed3849222bed3362e15dbf4b0a -r395522dffef1348e176564925656012f529c1910 --- firmware/App/Services/Messaging.h (.../Messaging.h) (revision d9b5f588d81e15ed3849222bed3362e15dbf4b0a) +++ firmware/App/Services/Messaging.h (.../Messaging.h) (revision 395522dffef1348e176564925656012f529c1910) @@ -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 Messaging.h * -* @author (last) Sean -* @date (last) 30-Jul-2024 +* @author (last) Shyam Kumar Mathamala +* @date (last) 25-Aug-2025 * -* @author (original) Sean -* @date (original) 30-Jul-2024 +* @author (original) Sean Nash +* @date (original) 01-Aug-2024 * ***************************************************************************/ @@ -147,15 +147,16 @@ // ACK MSG BOOL sendACKMsg( MESSAGE_T *message ); -// Send message helper functions -BOOL broadcastAlarmStatus( COMP_ALARM_STATUS_T almStatus ); +// Handle version request message +BOOL handleVersionRequestMessage( MESSAGE_T *message ); // Test Support Messaging Functions ************************** BOOL isTestingActivated( void ); void setTesterStatusToLoggedOut( void ); void handleIncomingMessage( MESSAGE_T *message ); +BOOL handleUICheckIn( MESSAGE_T *message ); BOOL handleTesterLogInRequest( MESSAGE_T *message ); BOOL testTDSoftwareResetRequest( MESSAGE_T *message ); @@ -164,6 +165,10 @@ BOOL sendEvent( TD_EVENT_ID_T event, EVENT_DATA_T dat1, EVENT_DATA_T dat2 ); BOOL sendOffButtonMsgToUI( U08 prompt ); +BOOL testSetTestConfiguration( MESSAGE_T *message ); +BOOL testGetTestConfiguration( MESSAGE_T *message ); +BOOL testResetAllTestConfigurations( MESSAGE_T *message ); + /**@}*/ #endif