mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
Tracker: fixed MAVLink stream trigger calculations
This commit is contained in:
parent
d7d5b7bb73
commit
343bcbb1c9
@ -380,7 +380,7 @@ bool GCS_MAVLINK::stream_trigger(enum streams stream_num)
|
||||
if (rate > 50) {
|
||||
rate = 50;
|
||||
}
|
||||
stream_ticks[stream_num] = (50 / rate) + stream_slowdown;
|
||||
stream_ticks[stream_num] = (50 / rate) -1 + stream_slowdown;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user