public enum MavProtocolCapability extends Enum<MavProtocolCapability>
| 枚举常量和说明 |
|---|
MAV_PROTOCOL_CAPABILITY_COMMAND_INT
Autopilot supports COMMAND_INT scaled integer message type.
|
MAV_PROTOCOL_CAPABILITY_FTP
Autopilot supports the new param union message type.
|
MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT
Autopilot supports MISSION float message type.
|
MAV_PROTOCOL_CAPABILITY_MISSION_INT
Autopilot supports MISSION_INT scaled integer message type.
|
MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT
Autopilot supports the new param float message type.
|
MAV_PROTOCOL_CAPABILITY_PARAM_UNION
Autopilot supports the new param union message type.
|
MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET
Autopilot supports commanding attitude offboard.
|
MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT
Autopilot supports commanding position and velocity targets in global scaled integers.
|
MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED
Autopilot supports commanding position and velocity targets in local NED frame.
|
MAV_PROTOCOL_CAPABILITY_TERRAIN
Autopilot supports terrain protocol / data handling.
|
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_MISSION_INT
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_COMMAND_INT
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_PARAM_UNION
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_FTP
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT
public static final MavProtocolCapability MAV_PROTOCOL_CAPABILITY_TERRAIN
public static MavProtocolCapability[] values()
for (MavProtocolCapability c : MavProtocolCapability.values()) System.out.println(c);
public static MavProtocolCapability valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.