Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r92d1230313c92c7480b9ae80a37b7a594232f59d -rce20c155091cd03f6ec01c0316a428b8b612492f --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 92d1230313c92c7480b9ae80a37b7a594232f59d) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision ce20c155091cd03f6ec01c0316a428b8b612492f) @@ -617,32 +617,6 @@ /*********************************************************************//** * @brief - * The broadcastDialysateFlowData function sends out dialysate flow data. - * @details Inputs: measuredDialysateFlowRate - * @details Outputs: dialysate flow data message constructed and queued - * @return TRUE if msg successfully queued for transmit, FALSE if not - *************************************************************************/ -BOOL broadcastDialysateFlowData( const DIALYSATE_FLOW_METER_DATA_T * const flowData ) -{ - BOOL result; - MESSAGE_T msg; - U08 *payloadPtr = msg.payload; - - // create a message record - blankMessage( &msg ); - msg.hdr.msgID = MSG_ID_DG_DIALYSATE_FLOW_METER_DATA; - msg.hdr.payloadLen = sizeof( DIALYSATE_FLOW_METER_DATA_T ); - - memcpy( payloadPtr, flowData, sizeof( DIALYSATE_FLOW_METER_DATA_T ) ); - - // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer - result = serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); - - return result; -} - -/*********************************************************************//** - * @brief * The broadcastConcentratePumpData function sends out concentrate pumps' data. * @details Inputs: none * @details Outputs: concentrate pump data msg constructed and queued