@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
31 lines (29 loc) • 1.71 kB
TypeScript
type PLANE_MODE = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26;
declare const PLANE_MODE_MANUAL: 0;
declare const PLANE_MODE_CIRCLE: 1;
declare const PLANE_MODE_STABILIZE: 2;
declare const PLANE_MODE_TRAINING: 3;
declare const PLANE_MODE_ACRO: 4;
declare const PLANE_MODE_FLY_BY_WIRE_A: 5;
declare const PLANE_MODE_FLY_BY_WIRE_B: 6;
declare const PLANE_MODE_CRUISE: 7;
declare const PLANE_MODE_AUTOTUNE: 8;
declare const PLANE_MODE_AUTO: 10;
declare const PLANE_MODE_RTL: 11;
declare const PLANE_MODE_LOITER: 12;
declare const PLANE_MODE_TAKEOFF: 13;
declare const PLANE_MODE_AVOID_ADSB: 14;
declare const PLANE_MODE_GUIDED: 15;
declare const PLANE_MODE_INITIALIZING: 16;
declare const PLANE_MODE_QSTABILIZE: 17;
declare const PLANE_MODE_QHOVER: 18;
declare const PLANE_MODE_QLOITER: 19;
declare const PLANE_MODE_QLAND: 20;
declare const PLANE_MODE_QRTL: 21;
declare const PLANE_MODE_QAUTOTUNE: 22;
declare const PLANE_MODE_QACRO: 23;
declare const PLANE_MODE_THERMAL: 24;
declare const PLANE_MODE_LOITER_ALT_QLAND: 25;
declare const PLANE_MODE_AUTOLAND: 26;
export { PLANE_MODE_ACRO, PLANE_MODE_AUTO, PLANE_MODE_AUTOLAND, PLANE_MODE_AUTOTUNE, PLANE_MODE_AVOID_ADSB, PLANE_MODE_CIRCLE, PLANE_MODE_CRUISE, PLANE_MODE_FLY_BY_WIRE_A, PLANE_MODE_FLY_BY_WIRE_B, PLANE_MODE_GUIDED, PLANE_MODE_INITIALIZING, PLANE_MODE_LOITER, PLANE_MODE_LOITER_ALT_QLAND, PLANE_MODE_MANUAL, PLANE_MODE_QACRO, PLANE_MODE_QAUTOTUNE, PLANE_MODE_QHOVER, PLANE_MODE_QLAND, PLANE_MODE_QLOITER, PLANE_MODE_QRTL, PLANE_MODE_QSTABILIZE, PLANE_MODE_RTL, PLANE_MODE_STABILIZE, PLANE_MODE_TAKEOFF, PLANE_MODE_THERMAL, PLANE_MODE_TRAINING };
export type { PLANE_MODE };