@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
13 lines (10 loc) • 350 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const HWSTATUS_ID = 165;
declare const HWSTATUS_CRC_EXTRA = 0;
declare const HwstatusDefinition: MessageDefinition;
interface MessageHwstatus {
vcc: number;
i2cerr: number;
}
export { HWSTATUS_CRC_EXTRA, HWSTATUS_ID, HwstatusDefinition };
export type { MessageHwstatus };