UNPKG

@aircast-4g/mavlink

Version:

TypeScript type generator for MAVLink dialects

17 lines (15 loc) 963 B
type ESTIMATOR_STATUS_FLAGS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048; declare const ESTIMATOR_ATTITUDE: 1; declare const ESTIMATOR_VELOCITY_HORIZ: 2; declare const ESTIMATOR_VELOCITY_VERT: 4; declare const ESTIMATOR_POS_HORIZ_REL: 8; declare const ESTIMATOR_POS_HORIZ_ABS: 16; declare const ESTIMATOR_POS_VERT_ABS: 32; declare const ESTIMATOR_POS_VERT_AGL: 64; declare const ESTIMATOR_CONST_POS_MODE: 128; declare const ESTIMATOR_PRED_POS_HORIZ_REL: 256; declare const ESTIMATOR_PRED_POS_HORIZ_ABS: 512; declare const ESTIMATOR_GPS_GLITCH: 1024; declare const ESTIMATOR_ACCEL_ERROR: 2048; export { ESTIMATOR_ACCEL_ERROR, ESTIMATOR_ATTITUDE, ESTIMATOR_CONST_POS_MODE, ESTIMATOR_GPS_GLITCH, ESTIMATOR_POS_HORIZ_ABS, ESTIMATOR_POS_HORIZ_REL, ESTIMATOR_POS_VERT_ABS, ESTIMATOR_POS_VERT_AGL, ESTIMATOR_PRED_POS_HORIZ_ABS, ESTIMATOR_PRED_POS_HORIZ_REL, ESTIMATOR_VELOCITY_HORIZ, ESTIMATOR_VELOCITY_VERT }; export type { ESTIMATOR_STATUS_FLAGS };