Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -rcb586152197059cb52c33474f5b9be0855bbad51 -r787312bd901f9c4c9d9e91591ecadca9f22fbeb6 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision cb586152197059cb52c33474f5b9be0855bbad51) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 787312bd901f9c4c9d9e91591ecadca9f22fbeb6) @@ -855,7 +855,7 @@ /*********************************************************************//** * @brief - * The broadcastDGCalibrationRecord function sends out the DG calibration + * The sendDGCalibrationRecord function sends out the DG calibration * record. * @details Inputs: none * @details Outputs: DG calibration record msg constructed and queued @@ -1990,31 +1990,6 @@ /*********************************************************************//** * @brief - * The handleSetAccelCalibration function handles a request to set - * accelerometer calibration factors. - * @details Inputs: none - * @details Outputs: message handled - * @param message a pointer to the message to handle - * @return none - *************************************************************************/ -void handleSetAccelCalibration( MESSAGE_T *message ) -{ - BOOL result = FALSE; - - if ( message->hdr.payloadLen == sizeof( ACCEL_CAL_PAYLOAD_T ) ) - { - ACCEL_CAL_PAYLOAD_T payload; - - memcpy( &payload, message->payload, sizeof( ACCEL_CAL_PAYLOAD_T ) ); - result = setAccelCalibration( payload.xOffset, payload.yOffset, payload.zOffset ); - } - - // respond to request - sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); -} - -/*********************************************************************//** - * @brief * The handleTestSetConductivityOverrideRequest function handles a * request to override a conductivity sensor's value * @details Inputs: none @@ -2651,7 +2626,7 @@ /*********************************************************************//** * @brief * The handleGetDGServiceRecord function handles a request to get the DG -* last service data record. +* service data record. * @details Inputs: none * @details Outputs: message handled * @param message a pointer to the message to handle