@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (12 loc) • 461 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const DEBUG_FLOAT_ARRAY_ID = 350;
declare const DEBUG_FLOAT_ARRAY_CRC_EXTRA = 0;
declare const DebugFloatArrayDefinition: MessageDefinition;
interface MessageDebugFloatArray {
time_usec: number;
array_id: number;
name: string;
data?: number[];
}
export { DEBUG_FLOAT_ARRAY_CRC_EXTRA, DEBUG_FLOAT_ARRAY_ID, DebugFloatArrayDefinition };
export type { MessageDebugFloatArray };