@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
20 lines (17 loc) • 659 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const GLOBAL_VISION_POSITION_ESTIMATE_ID = 101;
declare const GLOBAL_VISION_POSITION_ESTIMATE_CRC_EXTRA = 104;
declare const GlobalVisionPositionEstimateDefinition: MessageDefinition;
interface MessageGlobalVisionPositionEstimate {
usec: number;
x: number;
y: number;
z: number;
roll: number;
pitch: number;
yaw: number;
covariance?: number[];
reset_counter?: number;
}
export { GLOBAL_VISION_POSITION_ESTIMATE_CRC_EXTRA, GLOBAL_VISION_POSITION_ESTIMATE_ID, GlobalVisionPositionEstimateDefinition };
export type { MessageGlobalVisionPositionEstimate };