mirror of https://github.com/ArduPilot/ardupilot
14 lines
176 B
C++
14 lines
176 B
C++
|
#include "mode.h"
|
||
|
#include "Plane.h"
|
||
|
|
||
|
bool ModeAvoidADSB::_enter()
|
||
|
{
|
||
|
return plane.mode_guided.enter();
|
||
|
}
|
||
|
|
||
|
void ModeAvoidADSB::update()
|
||
|
{
|
||
|
plane.mode_guided.update();
|
||
|
}
|
||
|
|