ardupilot/ArduPlane/mode_qrtl.cpp

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();
}