Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r45dcb7966d1996f533eb6ca321637db16535182e -r00c9d70ee1398f0c6db39a011220f830db92cfd3 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 45dcb7966d1996f533eb6ca321637db16535182e) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 00c9d70ee1398f0c6db39a011220f830db92cfd3) @@ -861,32 +861,6 @@ } /************************************************************************* - * @brief - * The handleTestDGMessageRequest function handles a request to add a \n - * DG message to the received message queue. - * @details - * Inputs : none - * Outputs : message handled - * @param message : a pointer to the message to handle - * @return none - *************************************************************************/ -void handleTestDGMessageRequest( MESSAGE_T *message ) -{ - MESSAGE_WRAPPER_T dgMessage; - U32 msgLen = (U32)(message->hdr.payloadLen); - U08 *msgBytes = (U08*)(&(dgMessage)); - BOOL result; - - memcpy( msgBytes, message->payload, msgLen ); - - // add HD message to received message queue - result = addToMsgQueue( MSG_Q_IN, &dgMessage ); - - // respond to request - sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); -} - -/************************************************************************* * @brief handleTestWatchdogCheckInStateOverrideRequest * The handleTestWatchdogCheckInStateOverrideRequest function handles a \n * request to override the check-in status of a given task.