/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * java mavlink generator tool. It should not be modified by hand. */ package com.MAVLink.enums; /** * */ public class MAV_STATE { public static final int MAV_STATE_UNINIT = 0; /* Uninitialized system, state is unknown. | */ public static final int MAV_STATE_BOOT = 1; /* System is booting up. | */ public static final int MAV_STATE_CALIBRATING = 2; /* System is calibrating and not flight-ready. | */ public static final int MAV_STATE_STANDBY = 3; /* System is grounded and on standby. It can be launched any time. | */ public static final int MAV_STATE_ACTIVE = 4; /* System is active and might be already airborne. Motors are engaged. | */ public static final int MAV_STATE_CRITICAL = 5; /* System is in a non-normal flight mode. It can however still navigate. | */ public static final int MAV_STATE_EMERGENCY = 6; /* System is in a non-normal flight mode. It lost control over parts or over the whole airframe. It is in mayday and going down. | */ public static final int MAV_STATE_POWEROFF = 7; /* System just initialized its power-down sequence, will shut down now. | */ public static final int MAV_STATE_ENUM_END = 8; /* | */ }