mirror of https://github.com/ArduPilot/ardupilot
17 lines
181 B
C++
17 lines
181 B
C++
|
#include "mode.h"
|
||
|
#include "Plane.h"
|
||
|
|
||
|
bool ModeAutoTune::_enter()
|
||
|
{
|
||
|
plane.autotune_start();
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
void ModeAutoTune::update()
|
||
|
{
|
||
|
plane.mode_fbwa.update();
|
||
|
}
|
||
|
|