mirror of https://github.com/ArduPilot/ardupilot
Tools: Replay: cope with WARN_IF_UNUSED on AP_AHRS::set_home
This commit is contained in:
parent
0c880a4c3e
commit
bf9b8f41bf
|
@ -639,7 +639,9 @@ void Replay::read_sensors(const char *type)
|
|||
loc.lng * 1.0e-7f,
|
||||
loc.alt * 0.01f,
|
||||
AP_HAL::millis()*0.001f);
|
||||
_vehicle.ahrs.set_home(loc);
|
||||
if (!_vehicle.ahrs.set_home(loc)) {
|
||||
::printf("Failed to set home to that location!");
|
||||
}
|
||||
_vehicle.compass.set_initial_location(loc.lat, loc.lng);
|
||||
done_home_init = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue