2012-04-30 04:17:14 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
//****************************************************************
|
|
|
|
// Function that will calculate the desired direction to fly and distance
|
|
|
|
//****************************************************************
|
|
|
|
static void navigate()
|
|
|
|
{
|
|
|
|
// do not navigate with corrupt data
|
|
|
|
// ---------------------------------
|
2012-11-28 07:44:03 -04:00
|
|
|
if (!have_position) {
|
2012-04-30 04:17:14 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-27 18:20:20 -04:00
|
|
|
if ((next_WP.lat == 0)||(home_is_set==false)){
|
2012-04-30 04:17:14 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// waypoint distance from plane
|
|
|
|
// ----------------------------
|
|
|
|
wp_distance = get_distance(¤t_loc, &next_WP);
|
|
|
|
|
|
|
|
if (wp_distance < 0){
|
|
|
|
gcs_send_text_P(SEVERITY_HIGH,PSTR("<navigate> WP error - distance < 0"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// target_bearing is where we should be heading
|
|
|
|
// --------------------------------------------
|
2012-08-07 03:03:36 -03:00
|
|
|
target_bearing = get_bearing_cd(¤t_loc, &next_WP);
|
2012-04-30 04:17:14 -03:00
|
|
|
|
|
|
|
// nav_bearing will includes xtrac correction
|
|
|
|
// ------------------------------------------
|
|
|
|
nav_bearing = target_bearing;
|
|
|
|
|
|
|
|
// control mode specific updates to nav_bearing
|
|
|
|
// --------------------------------------------
|
|
|
|
update_navigation();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void calc_gndspeed_undershoot()
|
|
|
|
{
|
2012-09-17 01:43:24 -03:00
|
|
|
if (g_gps->status() == GPS::GPS_OK) {
|
|
|
|
// Function is overkill, but here in case we want to add filtering later
|
|
|
|
groundspeed_undershoot = (g.min_gndspeed > 0) ? (g.min_gndspeed - ground_speed) : 0;
|
|
|
|
}
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void calc_bearing_error()
|
2012-05-20 12:45:07 -03:00
|
|
|
{
|
2012-11-17 02:45:20 -04:00
|
|
|
bearing_error = nav_bearing - ahrs.yaw_sensor;
|
2012-04-30 04:17:14 -03:00
|
|
|
bearing_error = wrap_180(bearing_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long wrap_360(long error)
|
|
|
|
{
|
|
|
|
if (error > 36000) error -= 36000;
|
|
|
|
if (error < 0) error += 36000;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long wrap_180(long error)
|
|
|
|
{
|
|
|
|
if (error > 18000) error -= 36000;
|
|
|
|
if (error < -18000) error += 36000;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_crosstrack(void)
|
|
|
|
{
|
|
|
|
// Crosstrack Error
|
|
|
|
// ----------------
|
|
|
|
if (abs(wrap_180(target_bearing - crosstrack_bearing)) < 4500) { // If we are too far off or too close we don't do track following
|
|
|
|
crosstrack_error = sin(radians((target_bearing - crosstrack_bearing) / (float)100)) * (float)wp_distance; // Meters we are off track line
|
|
|
|
nav_bearing += constrain(crosstrack_error * g.crosstrack_gain, -g.crosstrack_entry_angle.get(), g.crosstrack_entry_angle.get());
|
|
|
|
nav_bearing = wrap_360(nav_bearing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reset_crosstrack()
|
|
|
|
{
|
2012-08-07 03:03:36 -03:00
|
|
|
crosstrack_bearing = get_bearing_cd(&prev_WP, &next_WP); // Used for track following
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void reached_waypoint()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|