|
|
|
@ -601,9 +601,9 @@ void GCS_MAVLINK::handle_param_set(mavlink_message_t *msg, DataFlash_Class *Data
@@ -601,9 +601,9 @@ void GCS_MAVLINK::handle_param_set(mavlink_message_t *msg, DataFlash_Class *Data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
|
GCS_MAVLINK::send_text(gcs_severity severity, const char *str) |
|
|
|
|
GCS_MAVLINK::send_text(uint8_t severity, const char *str) |
|
|
|
|
{ |
|
|
|
|
if (severity != SEVERITY_LOW &&
|
|
|
|
|
if (severity < MAV_SEVERITY_WARNING &&
|
|
|
|
|
comm_get_txspace(chan) >=
|
|
|
|
|
MAVLINK_NUM_NON_PAYLOAD_BYTES+MAVLINK_MSG_ID_STATUSTEXT_LEN) { |
|
|
|
|
// send immediately
|
|
|
|
@ -618,7 +618,7 @@ GCS_MAVLINK::send_text(gcs_severity severity, const char *str)
@@ -618,7 +618,7 @@ GCS_MAVLINK::send_text(gcs_severity severity, const char *str)
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void |
|
|
|
|
GCS_MAVLINK::send_text_P(gcs_severity severity, const prog_char_t *str) |
|
|
|
|
GCS_MAVLINK::send_text_P(uint8_t severity, const prog_char_t *str) |
|
|
|
|
{ |
|
|
|
|
mavlink_statustext_t m; |
|
|
|
|
uint8_t i; |
|
|
|
|