mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
15 lines
182 B
C++
15 lines
182 B
C++
#include "mode.h"
|
|
#include "Plane.h"
|
|
|
|
bool ModeQLoiter::_enter()
|
|
{
|
|
return plane.mode_qstabilize._enter();
|
|
}
|
|
|
|
void ModeQLoiter::update()
|
|
{
|
|
plane.mode_qstabilize.update();
|
|
}
|
|
|
|
|