@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (12 loc) • 495 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const MISSION_REQUEST_INT_ID = 51;
declare const MISSION_REQUEST_INT_CRC_EXTRA = 196;
declare const MissionRequestIntDefinition: MessageDefinition;
interface MessageMissionRequestInt {
seq: number;
target_system: number;
target_component: number;
mission_type?: number;
}
export { MISSION_REQUEST_INT_CRC_EXTRA, MISSION_REQUEST_INT_ID, MissionRequestIntDefinition };
export type { MessageMissionRequestInt };