Browse Source

AP_InertialSensor: use SEVERITY_USER_RESPONSE for accel cal messages

thanks to the suggestion from Kevin
master
Andrew Tridgell 12 years ago
parent
commit
fefbeacf86
  1. 2
      libraries/AP_InertialSensor/AP_InertialSensor_UserInteract_MAVLink.cpp

2
libraries/AP_InertialSensor/AP_InertialSensor_UserInteract_MAVLink.cpp

@ -42,6 +42,6 @@ void AP_InertialSensor_UserInteract_MAVLink::_printf_P(const prog_char* fmt, ... @@ -42,6 +42,6 @@ void AP_InertialSensor_UserInteract_MAVLink::_printf_P(const prog_char* fmt, ...
while (comm_get_txspace(_chan) - MAVLINK_NUM_NON_PAYLOAD_BYTES < sizeof(mavlink_statustext_t)) {
hal.scheduler->delay(1);
}
mavlink_msg_statustext_send(_chan, 1, msg);
mavlink_msg_statustext_send(_chan, SEVERITY_USER_RESPONSE, msg);
}

Loading…
Cancel
Save