mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Calibration timeout: Triple to 90 seconds as the user can now cancel the routine
We timed out earlier to allow users to abort, but now that we can cancel we do not need to enforce such a time limit.
This commit is contained in:
parent
2167457e2e
commit
cf55901ac9
@ -547,7 +547,7 @@ enum detect_orientation_return detect_orientation(orb_advert_t *mavlink_log_pub,
|
||||
const hrt_abstime t_start = hrt_absolute_time();
|
||||
|
||||
/* set timeout to 30s */
|
||||
static constexpr hrt_abstime timeout = 30000000;
|
||||
static constexpr hrt_abstime timeout = 90000000;
|
||||
|
||||
hrt_abstime t_timeout = t_start + timeout;
|
||||
hrt_abstime t = t_start;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user