mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
pwm_out_rc_in fix sign-compare
This commit is contained in:
@@ -301,7 +301,7 @@ void serial_callback(void *context, char *buffer, size_t num_bytes)
|
||||
if (num_bytes > 0) {
|
||||
mavlink_message_t msg;
|
||||
|
||||
for (int i = 0; i < num_bytes; ++i) {
|
||||
for (size_t i = 0; i < num_bytes; ++i) {
|
||||
// The MAVLink app doesn't use the internal buffer functions
|
||||
// and hence the first port can be used here.
|
||||
if (mavlink_parse_char(MAVLINK_COMM_0, buffer[i], &msg, &serial_status)) {
|
||||
|
||||
Reference in New Issue
Block a user