5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-02-25 01:03:59 -04:00
ardupilot/ArduPlane/mode_qland.cpp
2019-04-02 16:28:52 +11:00

14 lines
177 B
C++

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