@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
19 lines (16 loc) • 633 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const FIGURE_EIGHT_EXECUTION_STATUS_ID = 361;
declare const FIGURE_EIGHT_EXECUTION_STATUS_CRC_EXTRA = 0;
declare const FigureEightExecutionStatusDefinition: MessageDefinition;
interface MessageFigureEightExecutionStatus {
time_usec: number;
major_radius: number;
minor_radius: number;
orientation: number;
x: number;
y: number;
z: number;
frame: number;
}
export { FIGURE_EIGHT_EXECUTION_STATUS_CRC_EXTRA, FIGURE_EIGHT_EXECUTION_STATUS_ID, FigureEightExecutionStatusDefinition };
export type { MessageFigureEightExecutionStatus };