You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
#include "Copter.h" |
|
|
|
// run_nav_updates - top level call for the autopilot |
|
// ensures calculations such as "distance to waypoint" are calculated before autopilot makes decisions |
|
// To-Do - rename and move this function to make it's purpose more clear |
|
void Copter::run_nav_updates(void) |
|
{ |
|
update_super_simple_bearing(false); |
|
|
|
flightmode->update_navigation(); |
|
} |
|
|
|
// distance between vehicle and home in cm |
|
uint32_t Copter::home_distance() |
|
{ |
|
if (position_ok()) { |
|
const Vector3f home = pv_location_to_vector(ahrs.get_home()); |
|
const Vector3f curr = inertial_nav.get_position(); |
|
_home_distance = get_horizontal_distance_cm(curr, home); |
|
} |
|
return _home_distance; |
|
} |
|
|
|
// The location of home in relation to the vehicle in centi-degrees |
|
int32_t Copter::home_bearing() |
|
{ |
|
if (position_ok()) { |
|
const Vector3f home = pv_location_to_vector(ahrs.get_home()); |
|
const Vector3f curr = inertial_nav.get_position(); |
|
_home_bearing = get_bearing_cd(curr,home); |
|
} |
|
return _home_bearing; |
|
}
|
|
|