ardupilot/ArduPlane/AP_ExternalControl_Plane.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
437 B
C
Raw Normal View History

/*
external control library for plane
*/
#pragma once
#include <AP_ExternalControl/AP_ExternalControl.h>
#if AP_EXTERNAL_CONTROL_ENABLED
#include <AP_Common/Location.h>
class AP_ExternalControl_Plane : public AP_ExternalControl {
public:
/*
Sets the target global position for a loiter point.
*/
bool set_global_position(const Location& loc) override WARN_IF_UNUSED;
};
#endif // AP_EXTERNAL_CONTROL_ENABLED