Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r2ee6757cc12428790724f5a46d689675ea0e4e38 -ra265ac3cc10384a1119240d21f57833c9cb33c5b --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 2ee6757cc12428790724f5a46d689675ea0e4e38) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision a265ac3cc10384a1119240d21f57833c9cb33c5b) @@ -3761,34 +3761,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 handleTestDrainPumpMeasuredCurrentOverride function handles a request * to override the drain pump measured current * @details Inputs: none