Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r2bdae9629401e61c04fe84bb26c025fd689501c3 -r860cbde5c5777360f2e7b3e7d1348863f62d4328 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 2bdae9629401e61c04fe84bb26c025fd689501c3) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 860cbde5c5777360f2e7b3e7d1348863f62d4328) @@ -598,32 +598,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