ardupilot/Rover/commands.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.7 KiB
C++
Raw Normal View History

2015-05-13 00:16:45 -03:00
#include "Rover.h"
// set ahrs home to current location from inertial-nav location
2017-06-05 04:55:24 -03:00
bool Rover::set_home_to_current_location(bool lock)
{
Location temp_loc;
if (ahrs.have_inertial_nav() && ahrs.get_location(temp_loc)) {
if (!set_home(temp_loc, lock)) {
return false;
}
// we have successfully set AHRS home, set it for SmartRTL
g2.smart_rtl.set_home(true);
return true;
2017-06-05 04:55:24 -03:00
}
return false;
}
// sets ahrs home to specified location
// returns true if home location set successfully
2017-06-05 04:55:24 -03:00
bool Rover::set_home(const Location& loc, bool lock)
{
// set ahrs home
if (!ahrs.set_home(loc)) {
return false;
}
2017-06-05 04:55:24 -03:00
// lock home position
if (lock) {
ahrs.lock_home();
2017-06-05 04:55:24 -03:00
}
// Save Home to EEPROM
mode_auto.mission.write_home_to_storage();
2017-06-05 04:55:24 -03:00
// send text of home position to ground stations
gcs().send_text(MAV_SEVERITY_INFO, "Set HOME to %.6f %.6f at %.2fm",
2017-06-05 04:55:24 -03:00
static_cast<double>(loc.lat * 1.0e-7f),
static_cast<double>(loc.lng * 1.0e-7f),
static_cast<double>(loc.alt * 0.01f));
// return success
return true;
}
// called periodically while disarmed to update our home position to
// our current location
void Rover::update_home()
{
if (ahrs.home_is_locked()) {
// we've been explicitly told our home location
return;
}
Location loc{};
if (!ahrs.get_location(loc)) {
return;
}
barometer.update_calibration();
if (ahrs.home_is_set() &&
loc.get_distance(ahrs.get_home()) < DISTANCE_HOME_MINCHANGE) {
// insufficiently moved from current home - don't change it
return;
}
2022-02-10 10:04:14 -04:00
IGNORE_RETURN(ahrs.set_home(loc));
}