forked from Archive/PX4-Autopilot
PreflightCheck: Reduce GPS timeout to 2 sec
This commit is contained in:
parent
680898e6aa
commit
cd67609da5
|
@ -277,11 +277,11 @@ static bool gnssCheck(int mavlink_fd)
|
||||||
|
|
||||||
int gpsSub = orb_subscribe(ORB_ID(vehicle_gps_position));
|
int gpsSub = orb_subscribe(ORB_ID(vehicle_gps_position));
|
||||||
|
|
||||||
//Wait up to 1000ms to allow the driver to detect a GNSS receiver module
|
//Wait up to 2000ms to allow the driver to detect a GNSS receiver module
|
||||||
struct pollfd fds[1];
|
struct pollfd fds[1];
|
||||||
fds[0].fd = gpsSub;
|
fds[0].fd = gpsSub;
|
||||||
fds[0].events = POLLIN;
|
fds[0].events = POLLIN;
|
||||||
if(poll(fds, 1, 4000) <= 0) {
|
if(poll(fds, 1, 2000) <= 0) {
|
||||||
success = false;
|
success = false;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue