public enum MavCmdAck extends Enum<MavCmdAck>
| 枚举常量和说明 |
|---|
MAV_CMD_ACK_ERR_ACCESS_DENIED
The system is refusing to accept this command from this source / communication partner.
|
MAV_CMD_ACK_ERR_COORDINATE_FRAME_NOT_SUPPORTED
The coordinate frame of this command / mission item is not supported.
|
MAV_CMD_ACK_ERR_COORDINATES_OUT_OF_RANGE
The coordinate frame of this command is ok, but he coordinate values exceed the safety limits of this system.
|
MAV_CMD_ACK_ERR_FAIL
Generic error message if none of the other reasons fails or if no detailed error reporting is implemented.
|
MAV_CMD_ACK_ERR_NOT_SUPPORTED
Command or mission item is not supported, other commands would be accepted.
|
MAV_CMD_ACK_ERR_X_LAT_OUT_OF_RANGE
The X or latitude value is out of range.
|
MAV_CMD_ACK_ERR_Y_LON_OUT_OF_RANGE
The Y or longitude value is out of range.
|
MAV_CMD_ACK_ERR_Z_ALT_OUT_OF_RANGE
The Z or altitude value is out of range.
|
MAV_CMD_ACK_OK
Command / mission item is ok.
|
public static final MavCmdAck MAV_CMD_ACK_OK
public static final MavCmdAck MAV_CMD_ACK_ERR_FAIL
public static final MavCmdAck MAV_CMD_ACK_ERR_ACCESS_DENIED
public static final MavCmdAck MAV_CMD_ACK_ERR_NOT_SUPPORTED
public static final MavCmdAck MAV_CMD_ACK_ERR_COORDINATE_FRAME_NOT_SUPPORTED
public static final MavCmdAck MAV_CMD_ACK_ERR_COORDINATES_OUT_OF_RANGE
public static final MavCmdAck MAV_CMD_ACK_ERR_X_LAT_OUT_OF_RANGE
public static final MavCmdAck MAV_CMD_ACK_ERR_Y_LON_OUT_OF_RANGE
public static final MavCmdAck MAV_CMD_ACK_ERR_Z_ALT_OUT_OF_RANGE
public static MavCmdAck[] values()
for (MavCmdAck c : MavCmdAck.values()) System.out.println(c);
public static MavCmdAck valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.