@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
14 lines (11 loc) • 446 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const GOPRO_GET_RESPONSE_ID = 217;
declare const GOPRO_GET_RESPONSE_CRC_EXTRA = 0;
declare const GoproGetResponseDefinition: MessageDefinition;
interface MessageGoproGetResponse {
cmd_id: number;
status: number;
value: number[];
}
export { GOPRO_GET_RESPONSE_CRC_EXTRA, GOPRO_GET_RESPONSE_ID, GoproGetResponseDefinition };
export type { MessageGoproGetResponse };