Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r9888b5cfd349830ed220cd1e65c608140c85bd85 -r3429cae3e9e59fcfcea5381a4ff6d3614d699816 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 9888b5cfd349830ed220cd1e65c608140c85bd85) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 3429cae3e9e59fcfcea5381a4ff6d3614d699816) @@ -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