@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
13 lines (11 loc) • 799 B
TypeScript
type GPS_INPUT_IGNORE_FLAGS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128;
declare const GPS_INPUT_IGNORE_FLAG_ALT: 1;
declare const GPS_INPUT_IGNORE_FLAG_HDOP: 2;
declare const GPS_INPUT_IGNORE_FLAG_VDOP: 4;
declare const GPS_INPUT_IGNORE_FLAG_VEL_HORIZ: 8;
declare const GPS_INPUT_IGNORE_FLAG_VEL_VERT: 16;
declare const GPS_INPUT_IGNORE_FLAG_SPEED_ACCURACY: 32;
declare const GPS_INPUT_IGNORE_FLAG_HORIZONTAL_ACCURACY: 64;
declare const GPS_INPUT_IGNORE_FLAG_VERTICAL_ACCURACY: 128;
export { GPS_INPUT_IGNORE_FLAG_ALT, GPS_INPUT_IGNORE_FLAG_HDOP, GPS_INPUT_IGNORE_FLAG_HORIZONTAL_ACCURACY, GPS_INPUT_IGNORE_FLAG_SPEED_ACCURACY, GPS_INPUT_IGNORE_FLAG_VDOP, GPS_INPUT_IGNORE_FLAG_VEL_HORIZ, GPS_INPUT_IGNORE_FLAG_VEL_VERT, GPS_INPUT_IGNORE_FLAG_VERTICAL_ACCURACY };
export type { GPS_INPUT_IGNORE_FLAGS };