@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (12 loc) • 475 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const GOPRO_SET_REQUEST_ID = 218;
declare const GOPRO_SET_REQUEST_CRC_EXTRA = 0;
declare const GoproSetRequestDefinition: MessageDefinition;
interface MessageGoproSetRequest {
target_system: number;
target_component: number;
cmd_id: number;
value: number[];
}
export { GOPRO_SET_REQUEST_CRC_EXTRA, GOPRO_SET_REQUEST_ID, GoproSetRequestDefinition };
export type { MessageGoproSetRequest };