Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Copters/ICopter.cs
zxd 72a9e28ed1 主要修改取消UDPserver 更换通信模块的通信
最小距离的修改
无悬停的快速航点模拟
时间长度的限定 如flyto的时间限定为4095
计划路线的修改:只显示当前航点的路线
飞控版本检测
航点失败续写和航点单写
2018-08-23 22:37:52 +08:00

10 lines
211 B
C#

using System.ComponentModel;
namespace Plane.Copters
{
public partial interface ICopter : ICopterStatus, ICopterEvents, ICopterActions, ICopterCommunication, INotifyPropertyChanged
{
}
}