Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Copters/ICopterAttribute.cs
xu d91b759d5f 1.增加测试某个通讯模块是否正常功能
2.增加电池电压测试
3.自动计算模拟飞机更新时间300内保证流程,1000内保证能工作
2021-04-02 01:18:56 +08:00

21 lines
497 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Plane.Copters
{
/// <summary>
/// 定义用于设置飞行器部分可编辑的属性
/// </summary>
public partial interface ICopterAttribute
{
/// <summary>
/// 飞行器摆放时地面的相对高度
/// </summary>
float GroundAlt { get; set; }
float RetainInt{ get; }
//模拟飞行更新间隔
int sim_update_int { get; set; }
}
}