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

14 lines
175 B
C++

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