@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
11 lines (9 loc) • 405 B
TypeScript
type PID_TUNING_AXIS = 1 | 2 | 3 | 4 | 5 | 6;
declare const PID_TUNING_ROLL: 1;
declare const PID_TUNING_PITCH: 2;
declare const PID_TUNING_YAW: 3;
declare const PID_TUNING_ACCZ: 4;
declare const PID_TUNING_STEER: 5;
declare const PID_TUNING_LANDING: 6;
export { PID_TUNING_ACCZ, PID_TUNING_LANDING, PID_TUNING_PITCH, PID_TUNING_ROLL, PID_TUNING_STEER, PID_TUNING_YAW };
export type { PID_TUNING_AXIS };