UNPKG

@aircast-4g/mavlink

Version:

TypeScript type generator for MAVLink dialects

14 lines (12 loc) 614 B
type MAV_STATE = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8; declare const MAV_STATE_UNINIT: 0; declare const MAV_STATE_BOOT: 1; declare const MAV_STATE_CALIBRATING: 2; declare const MAV_STATE_STANDBY: 3; declare const MAV_STATE_ACTIVE: 4; declare const MAV_STATE_CRITICAL: 5; declare const MAV_STATE_EMERGENCY: 6; declare const MAV_STATE_POWEROFF: 7; declare const MAV_STATE_FLIGHT_TERMINATION: 8; export { MAV_STATE_ACTIVE, MAV_STATE_BOOT, MAV_STATE_CALIBRATING, MAV_STATE_CRITICAL, MAV_STATE_EMERGENCY, MAV_STATE_FLIGHT_TERMINATION, MAV_STATE_POWEROFF, MAV_STATE_STANDBY, MAV_STATE_UNINIT }; export type { MAV_STATE };