Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -re28e96fba3f2293208e6d91673288acba2514cca -r9279d01e7e539ad1e788b85db4ea2288965b03c6 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision e28e96fba3f2293208e6d91673288acba2514cca) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 9279d01e7e539ad1e788b85db4ea2288965b03c6) @@ -8,7 +8,7 @@ * @file SystemCommMessages.h * * @author (last) Dara Navaei -* @date (last) 21-Dec-2021 +* @date (last) 03-Feb-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -140,6 +140,12 @@ // MSG_ID_DG_POST_FINAL_TEST_RESULT BOOL sendPOSTFinalResult( BOOL passed ); +// MSG_ID_DG_SEND_SW_CONFIG_RECORD +BOOL sendDGSWConfigRecord( U32 payloadCurrNum, U32 payloadTotalNum, U32 length, U08* swRcrdAddress ); + +// MSG_ID_DG_SCHEDULED_RUNS_INFO +void handleDGScheduledRunsRequest( MESSAGE_T *message ); + // *********** public test support message functions ********** // MSG_TESTER_LOG_IN @@ -350,9 +356,27 @@ // MSG_ID_DG_DRAIN_PUMP_MEASURED_RPM_OVERRIDE void handleSetDrainPumpMeasuredRPMOverrideRequest( MESSAGE_T *message ); -// MSG_ID_DG_FAN_RPM_ALARM_START_TIME_OFFSET_OVERRIDE -void handleTestFansRPMAlarmStartTimeOffsetOverrideRequest( MESSAGE_T *message ); +// MSG_ID_DG_ALARM_INFO_SEND_INTERVAL_OVERRIDE +void handleTestAlarmInfoSendIntervalOverrideRequest( MESSAGE_T *message ); +// MSG_ID_DG_SUPER_CLEAR_ALARMS_CMD +void handleTestSuperClearAlarmsRequest( MESSAGE_T *message ); + +// MSG_ID_DG_SET_FANS_RPM_ALARM_START_TIME_OFFSET +void handleTestFansRPMAlarmStartTimeOffsetRequest( MESSAGE_T *message ); + +// MSG_ID_DG_FANS_DUTY_CYCLE_OVERRIDE +void handleSetFansDutyCycleOverrideRequest( MESSAGE_T *message ); + +// MSG_ID_DG_GET_SW_CONFIG_RECORD +void handleGetDGSoftwareConfigRecord( MESSAGE_T *message ); + +// MSG_ID_DG_SET_SW_CONFIG_RECORD +void handleSetDGSoftwareConfigRecord( MESSAGE_T *message ); + +// MSG_ID_DG_HD_COMMUNICATION_STATUS +void handleTestHDCommunicationStatusOverrideRequest(MESSAGE_T *message); + // MSG_ID_DG_USED_ACID_VOLUME_ML_OVERRIDE void handleTestUsedAcidVolumeMLOverrideRequest(MESSAGE_T *message);