@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
16 lines (13 loc) • 456 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const PARAM_ERROR_ID = 345;
declare const PARAM_ERROR_CRC_EXTRA = 0;
declare const ParamErrorDefinition: MessageDefinition;
interface MessageParamError {
param_index: number;
target_system: number;
target_component: number;
param_id: string;
error: number;
}
export { PARAM_ERROR_CRC_EXTRA, PARAM_ERROR_ID, ParamErrorDefinition };
export type { MessageParamError };