5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-11 02:18:29 -04:00
ardupilot/ArduPlane/mode_avoidADSB.cpp

14 lines
176 B
C++
Raw Normal View History

#include "mode.h"
#include "Plane.h"
bool ModeAvoidADSB::_enter()
{
return plane.mode_guided.enter();
}
void ModeAvoidADSB::update()
{
plane.mode_guided.update();
}