@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (12 loc) • 579 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const CUBEPILOT_FIRMWARE_UPDATE_START_ID = 50004;
declare const CUBEPILOT_FIRMWARE_UPDATE_START_CRC_EXTRA = 0;
declare const CubepilotFirmwareUpdateStartDefinition: MessageDefinition;
interface MessageCubepilotFirmwareUpdateStart {
size: number;
crc: number;
target_system: number;
target_component: number;
}
export { CUBEPILOT_FIRMWARE_UPDATE_START_CRC_EXTRA, CUBEPILOT_FIRMWARE_UPDATE_START_ID, CubepilotFirmwareUpdateStartDefinition };
export type { MessageCubepilotFirmwareUpdateStart };