UNPKG

@aircast-4g/mavlink

Version:

TypeScript type generator for MAVLink dialects

23 lines (20 loc) 696 B
import { MessageDefinition } from '../../../core/types.js'; declare const STORAGE_INFORMATION_ID = 261; declare const STORAGE_INFORMATION_CRC_EXTRA = 0; declare const StorageInformationDefinition: MessageDefinition; interface MessageStorageInformation { time_boot_ms: number; total_capacity: number; used_capacity: number; available_capacity: number; read_speed: number; write_speed: number; storage_id: number; storage_count: number; status: number; type?: number; name?: string; storage_usage?: number; } export { STORAGE_INFORMATION_CRC_EXTRA, STORAGE_INFORMATION_ID, StorageInformationDefinition }; export type { MessageStorageInformation };