mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-28 10:14:08 +08:00
pwm_out_rc_in fix sign-compare
This commit is contained in:
parent
dd70892cb8
commit
a3ccfe52ee
@ -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)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user