Index: firmware/App/Services/FPInterface.c =================================================================== diff -u -r5479efc61e81eb9e133d529afe805b006797a572 -r88662452040aa91ce9a7da032e9ed1865517bdd5 --- firmware/App/Services/FPInterface.c (.../FPInterface.c) (revision 5479efc61e81eb9e133d529afe805b006797a572) +++ firmware/App/Services/FPInterface.c (.../FPInterface.c) (revision 88662452040aa91ce9a7da032e9ed1865517bdd5) @@ -110,40 +110,6 @@ /*********************************************************************//** * @brief - * The cmdFPStartStop function sends a start/stop command to FP for mode - * transition and generate water with commanded flow rate. - * @details Inputs: none - * @details Outputs: start/stop command along with flow rate if applicable. - * @param startStop To start/stop the FP delivery. - * @return TRUE if msg successfully queued for transmit, FALSE if not - *************************************************************************/ -BOOL cmdFPStartStop( BOOL startStop, RO_CMD_ID cmdMode) -{ - FP_WATER_REQ_PAYLOAD_T fpStartRequest; - BOOL result; - MESSAGE_T msg; - U08 *payloadPtr = msg.payload; - - // Populate FP start message - fpStartRequest.cmdID = (U32)cmdMode; - fpStartRequest.start = startStop; - fpStartRequest.roRate = getFPFlowRate(); - - // Create a message record - blankMessage( &msg ); - msg.hdr.msgID = MSG_ID_DD_FP_START_STOP_CMD_REQUEST; - msg.hdr.payloadLen = sizeof( FP_WATER_REQ_PAYLOAD_T ); - - memcpy( payloadPtr, &fpStartRequest, sizeof( FP_WATER_REQ_PAYLOAD_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_DD_2_RO, ACK_REQUIRED ); - - return result; -} - -/*********************************************************************//** - * @brief * The setFPFlowRate function sets the FP pump flow rate to deliver purified * water. * @details \b Inputs: none