Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -re13152777df58456a873789fbfc3f889813109c9 -rcbc2912847e072f23e18efd74996a93311044759 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision e13152777df58456a873789fbfc3f889813109c9) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision cbc2912847e072f23e18efd74996a93311044759) @@ -3331,8 +3331,8 @@ /*********************************************************************//** * @brief - * The handleSetDialysateFlowCalibration function handles a request to set - * dialysate flow calibration factors. + * The handleTestSetTreatmentParameter function handles a request to set + * a treatment parameter. * @details Inputs: none * @details Outputs: message handled * @param message a pointer to the message to handle @@ -3355,12 +3355,12 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } -/************************************************************************* +/*********************************************************************//** * @brief * The handleHomeHDValve function handles a request to home an HD valve * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleHomeHDValve( MESSAGE_T *message ) @@ -3439,13 +3439,13 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } -/************************************************************************* +/*********************************************************************//** * @brief * The handleSetHDValvePositionOverrideRequest function handles a request to * override the position of a valve * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetHDValvePositionOverrideRequest( MESSAGE_T *message ) @@ -3472,13 +3472,13 @@ } #ifdef DEBUG_ENABLED -/************************************************************************* +/*********************************************************************//** * @brief * The handleSetHDValvePWMOverrideRequest function handles a request to * override the PWM of a valve * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetHDValvePWMOverrideRequest( MESSAGE_T *message ) @@ -3505,13 +3505,13 @@ } #endif -/************************************************************************* +/*********************************************************************//** * @brief * The handleSetAirTrapBroadcastIntervalOverrideRequest function handles a * request to override the air trap data broadcast interval. * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetAirTrapBroadcastIntervalOverrideRequest( MESSAGE_T *message ) @@ -3537,13 +3537,13 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } -/************************************************************************* +/*********************************************************************//** * @brief * The handleSetAirTrapLevelSensorOverrideRequest function handles a request to * override an air trap level sensor. * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetAirTrapLevelSensorOverrideRequest( MESSAGE_T *message ) @@ -3569,13 +3569,13 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } -/************************************************************************* +/*********************************************************************//** * @brief * The handleSetAirTrapLevelSensorOverrideRequest function handles a request to * override an air trap level sensor. * @details Inputs: none * @details Outputs: message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleHDSoftwareResetRequest( MESSAGE_T *message ) @@ -3590,7 +3590,7 @@ { // s/w reset of processor result = TRUE; // reset will prevent this from getting transmitted though #ifndef _VECTORCAST_ - systemREG1->SYSECR = (0x10) << 14; // reset processor + systemREG1->SYSECR = (0x2) << 14; // reset processor #endif } }