mirror of https://github.com/ArduPilot/ardupilot
24 lines
584 B
C++
24 lines
584 B
C++
#include "mode.h"
|
|
#include "Plane.h"
|
|
|
|
bool ModeCircle::_enter()
|
|
{
|
|
// the altitude to circle at is taken from the current altitude
|
|
plane.next_WP_loc.alt = plane.current_loc.alt;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ModeCircle::update()
|
|
{
|
|
// we have no GPS installed and have lost radio contact
|
|
// or we just want to fly around in a gentle circle w/o GPS,
|
|
// holding altitude at the altitude we set when we
|
|
// switched into the mode
|
|
plane.nav_roll_cd = plane.roll_limit_cd / 3;
|
|
plane.update_load_factor();
|
|
plane.calc_nav_pitch();
|
|
plane.calc_throttle();
|
|
}
|
|
|