@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
20 lines (17 loc) • 708 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const OPEN_DRONE_ID_AUTHENTICATION_ID = 12902;
declare const OPEN_DRONE_ID_AUTHENTICATION_CRC_EXTRA = 0;
declare const OpenDroneIdAuthenticationDefinition: MessageDefinition;
interface MessageOpenDroneIdAuthentication {
timestamp: number;
target_system: number;
target_component: number;
id_or_mac: number[];
authentication_type: number;
data_page: number;
last_page_index: number;
length: number;
authentication_data: number[];
}
export { OPEN_DRONE_ID_AUTHENTICATION_CRC_EXTRA, OPEN_DRONE_ID_AUTHENTICATION_ID, OpenDroneIdAuthenticationDefinition };
export type { MessageOpenDroneIdAuthentication };