Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r46a1f88d8a17cc847d3825fb40ee76844869b930 -r2e56064726838bfb626ec3ea40132c4e3681639a --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 46a1f88d8a17cc847d3825fb40ee76844869b930) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 2e56064726838bfb626ec3ea40132c4e3681639a) @@ -1660,34 +1660,6 @@ /*********************************************************************//** * @brief - * The handleCpldStatusRequest function handles a CPLD Status request message. - * @details Inputs: none - * @details Outputs: message handled - * @param message a pointer to the message to handle - * @return none - *************************************************************************/ -void handleCpldStatusRequest( MESSAGE_T *message ) -{ - MESSAGE_T msg; - CPLD_STATUS_T payload; - U08 *payloadPtr = msg.payload; - - // populate payload - getCPLDStatus( &payload ); - // create a message record - blankMessage( &msg ); - msg.hdr.msgID = MSG_ID_DG_CPLD_STATUS; - msg.hdr.payloadLen = sizeof( CPLD_STATUS_T ); - - // fill message payload - memcpy( payloadPtr, &payload, sizeof( CPLD_STATUS_T ) ); - - // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer - serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); -} - -/*********************************************************************//** - * @brief * The handleReceiveChemFlushSampleResultsFromHD function handles receiving * the chemical disinfect sample flush results from HD. * @details Inputs: none