@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
16 lines (13 loc) • 412 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const DEBUG_VECT_ID = 250;
declare const DEBUG_VECT_CRC_EXTRA = 49;
declare const DebugVectDefinition: MessageDefinition;
interface MessageDebugVect {
time_usec: number;
x: number;
y: number;
z: number;
name: string;
}
export { DEBUG_VECT_CRC_EXTRA, DEBUG_VECT_ID, DebugVectDefinition };
export type { MessageDebugVect };