Browse Source

GPS sim: Adjust delay closer to what real u-blox devices do

sbg
Lorenz Meier 8 years ago
parent
commit
cf7d4fc1a7
  1. 2
      src/platforms/posix/drivers/gpssim/gpssim.cpp

2
src/platforms/posix/drivers/gpssim/gpssim.cpp

@ -288,7 +288,7 @@ GPSSIM::receive(int timeout) @@ -288,7 +288,7 @@ GPSSIM::receive(int timeout)
_report_gps_pos.fix_type = gps.fix_type;
_report_gps_pos.satellites_used = gps.satellites_visible;
usleep(200000);
usleep(120000);
return 1;
}

Loading…
Cancel
Save