Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -ra6684f5a4c807bf27996b9521c6d0f9f7c85d9f5 -rcb586152197059cb52c33474f5b9be0855bbad51 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision a6684f5a4c807bf27996b9521c6d0f9f7c85d9f5) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision cb586152197059cb52c33474f5b9be0855bbad51) @@ -129,6 +129,15 @@ // MSG_ID_DG_SEND_CALIBRATION_DATA BOOL sendDGCalibrationRecord( U32 payloadCurrNum, U32 payloadTotalNum, U32 length, U08* calRcrdAddress ); +// MSG_ID_DG_SEND_SYSTEM_RECORD +BOOL sendDGSystemRecord( U32 payloadCurrNum, U32 payloadTotalNum, U32 length, U08* sysRcrdAddress ); + +// MSG_ID_DG_SEND_SERVICE_RECORD +BOOL sendDGServiceRecord( U32 payloadCurrNum, U32 payloadTotalNum, U32 length, U08* srvcRcrdAddress ); + +// MSG_ID_DG_SEND_SCHEDULED_RUNS_RECORD +BOOL sendDGScheduledRunsRecord( U32 payloadCurrNum, U32 payloadTotalNum, U32 length, U08* scheduledRcrdAddress ); + // *********** public test support message functions ********** #ifdef DEBUG_ENABLED @@ -261,11 +270,29 @@ void handleROPumpTargetPressureOverride( MESSAGE_T *message ); // MSG_ID_DG_SET_CALIBRATION_DATA -void handleSetDGCalibration( MESSAGE_T *message ); +void handleSetDGCalibrationRecord( MESSAGE_T *message ); // MSG_ID_DG_GET_CALIBRATION_DATA -void handleGetDGCalibration( MESSAGE_T *message ); +void handleGetDGCalibrationRecord( MESSAGE_T *message ); +// MSG_ID_DG_SET_SYSTEM_DATA +void handleSetDGSystemRecord( MESSAGE_T *message ); + +// MSG_ID_DG_GET_SYSTEM_DATA +void handleGetDGSystemRecord( MESSAGE_T *message ); + +// MSG_ID_DG_GET_SERVICE_RECORD +void handleGetDGServiceRecord( MESSAGE_T *message ); + +// MSG_ID_DG_SET_SERVICE_RECORD +void handleSetDGServiceRecord( MESSAGE_T *message ); + +// MSG_ID_DG_GET_SCHEDULED_RUNS_RECORD +void handleGetDGScheduledRunsRecord( MESSAGE_T *message ); + +// MSG_ID_DG_SET_SCHEDULED_RUNS_RECORD +void handleSetDGScheduledRunsRecord( MESSAGE_T *message ); + /**@}*/ #endif