public enum MavCmdDoGuidedLimits extends Enum<MavCmdDoGuidedLimits>
| 枚举常量和说明 |
|---|
PARAM_1
timeout - maximum time (in seconds) that external controller will be allowed to control vehicle. 0 means no timeout
|
PARAM_2
absolute altitude min (in meters, WGS84) - if vehicle moves below this alt, the command will be aborted and the mission will continue. 0 means no lower altitude limit
|
PARAM_3
absolute altitude max (in meters)- if vehicle moves above this alt, the command will be aborted and the mission will continue. 0 means no upper altitude limit
|
PARAM_4
horizontal move limit (in meters, WGS84) - if vehicle moves more than this distance from it's location at the moment the command was executed, the command will be aborted and the mission will continue. 0 means no horizontal altitude limit
|
PARAM_5
Empty
|
PARAM_6
Empty
|
PARAM_7
Empty
|
public static final MavCmdDoGuidedLimits PARAM_1
public static final MavCmdDoGuidedLimits PARAM_2
public static final MavCmdDoGuidedLimits PARAM_3
public static final MavCmdDoGuidedLimits PARAM_4
public static final MavCmdDoGuidedLimits PARAM_5
public static final MavCmdDoGuidedLimits PARAM_6
public static final MavCmdDoGuidedLimits PARAM_7
public static MavCmdDoGuidedLimits[] values()
for (MavCmdDoGuidedLimits c : MavCmdDoGuidedLimits.values()) System.out.println(c);
public static MavCmdDoGuidedLimits valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.