@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
17 lines (15 loc) • 819 B
TypeScript
type EKF_STATUS_FLAGS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 32768 | 1024;
declare const EKF_ATTITUDE: 1;
declare const EKF_VELOCITY_HORIZ: 2;
declare const EKF_VELOCITY_VERT: 4;
declare const EKF_POS_HORIZ_REL: 8;
declare const EKF_POS_HORIZ_ABS: 16;
declare const EKF_POS_VERT_ABS: 32;
declare const EKF_POS_VERT_AGL: 64;
declare const EKF_CONST_POS_MODE: 128;
declare const EKF_PRED_POS_HORIZ_REL: 256;
declare const EKF_PRED_POS_HORIZ_ABS: 512;
declare const EKF_GPS_GLITCHING: 32768;
declare const EKF_UNINITIALIZED: 1024;
export { EKF_ATTITUDE, EKF_CONST_POS_MODE, EKF_GPS_GLITCHING, EKF_POS_HORIZ_ABS, EKF_POS_HORIZ_REL, EKF_POS_VERT_ABS, EKF_POS_VERT_AGL, EKF_PRED_POS_HORIZ_ABS, EKF_PRED_POS_HORIZ_REL, EKF_UNINITIALIZED, EKF_VELOCITY_HORIZ, EKF_VELOCITY_VERT };
export type { EKF_STATUS_FLAGS };