AP_InertialSensor: use SEVERITY_USER_RESPONSE for accel cal messages

thanks to the suggestion from Kevin
This commit is contained in:
Andrew Tridgell 2013-05-09 09:28:25 +10:00
parent 11bf6f40f7
commit fefbeacf86

View File

@ -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);
}