5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-13 11:28:30 -04:00
ardupilot/ArduPlane/mode_qhover.cpp

15 lines
180 B
C++
Raw Normal View History

#include "mode.h"
#include "Plane.h"
bool ModeQHover::_enter()
{
return plane.mode_qstabilize._enter();
}
void ModeQHover::update()
{
plane.mode_qstabilize.update();
}