@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
27 lines (24 loc) • 724 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const ICAROUS_KINEMATIC_BANDS_ID = 42001;
declare const ICAROUS_KINEMATIC_BANDS_CRC_EXTRA = 0;
declare const IcarousKinematicBandsDefinition: MessageDefinition;
interface MessageIcarousKinematicBands {
min1: number;
max1: number;
min2: number;
max2: number;
min3: number;
max3: number;
min4: number;
max4: number;
min5: number;
max5: number;
numbands: number;
type1: number;
type2: number;
type3: number;
type4: number;
type5: number;
}
export { ICAROUS_KINEMATIC_BANDS_CRC_EXTRA, ICAROUS_KINEMATIC_BANDS_ID, IcarousKinematicBandsDefinition };
export type { MessageIcarousKinematicBands };