ardupilot/ArduPlane/mode_qacro.cpp
2019-04-02 16:28:52 +11:00

15 lines
197 B
C++

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