@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (13 loc) • 811 B
TypeScript
type ADSB_FLAGS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 32768;
declare const ADSB_FLAGS_VALID_COORDS: 1;
declare const ADSB_FLAGS_VALID_ALTITUDE: 2;
declare const ADSB_FLAGS_VALID_HEADING: 4;
declare const ADSB_FLAGS_VALID_VELOCITY: 8;
declare const ADSB_FLAGS_VALID_CALLSIGN: 16;
declare const ADSB_FLAGS_VALID_SQUAWK: 32;
declare const ADSB_FLAGS_SIMULATED: 64;
declare const ADSB_FLAGS_VERTICAL_VELOCITY_VALID: 128;
declare const ADSB_FLAGS_BARO_VALID: 256;
declare const ADSB_FLAGS_SOURCE_UAT: 32768;
export { ADSB_FLAGS_BARO_VALID, ADSB_FLAGS_SIMULATED, ADSB_FLAGS_SOURCE_UAT, ADSB_FLAGS_VALID_ALTITUDE, ADSB_FLAGS_VALID_CALLSIGN, ADSB_FLAGS_VALID_COORDS, ADSB_FLAGS_VALID_HEADING, ADSB_FLAGS_VALID_SQUAWK, ADSB_FLAGS_VALID_VELOCITY, ADSB_FLAGS_VERTICAL_VELOCITY_VALID };
export type { ADSB_FLAGS };