5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-03-09 08:04:14 -03:00
ardupilot/ArduPlane/mode_qautotune.cpp
2019-04-02 16:28:52 +11:00

14 lines
185 B
C++

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