mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-13 13:37:34 +08:00
ManualControlSelector: refactor timeout calculation to be consistent
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user