mirror of https://github.com/ArduPilot/ardupilot
AP_Button: check for space before sending BUTTON_CHANGE
This commit is contained in:
parent
65038c753c
commit
8e959d4704
|
@ -151,10 +151,12 @@ void AP_Button::send_report(void)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
mavlink_channel_t chan = (mavlink_channel_t)i;
|
mavlink_channel_t chan = (mavlink_channel_t)i;
|
||||||
mavlink_msg_button_change_send(chan,
|
if (HAVE_PAYLOAD_SPACE(chan, BUTTON_CHANGE)) {
|
||||||
now,
|
mavlink_msg_button_change_send(chan,
|
||||||
(uint32_t)last_change_time_ms,
|
now,
|
||||||
last_mask);
|
(uint32_t)last_change_time_ms,
|
||||||
|
last_mask);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue