mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
ManualControlSelector: refactor timeout calculation to be consistent
This commit is contained in:
parent
2528e8c572
commit
63ddb050ef
@ -39,7 +39,7 @@ namespace manual_control
|
||||
|
||||
void ManualControlSelector::update_time_only(uint64_t now)
|
||||
{
|
||||
if (_setpoint.chosen_input.timestamp_sample + _timeout < now) {
|
||||
if (now - _setpoint.chosen_input.timestamp_sample > _timeout) {
|
||||
_setpoint.valid = false;
|
||||
_instance = -1;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user