Files
sunny360vfe_proj/controllers/ENUM_AFCS_LAT.m
T
2025-06-04 14:13:22 +08:00

26 lines
859 B
Matlab

classdef ENUM_AFCS_LAT < Simulink.IntEnumType
enumeration
OFF (0)
LNAV2PHI (1) % 导引到航线
MC_HOLD_POS (2) % 旋翼模式修正侧偏、距离
MC_HOLD_POS_VCTRL (3) % 旋翼模式修正侧偏、给定速度
MC_HOLD_POS_VMAN (4) % 旋翼模式修正侧偏、手控速度
MC_VMAN (5) % 旋翼模式手控侧向与纵向速度
LNAV2P2PHI (6) % 导引到航点
PN (7) % 比例导引
MC_HOLD_POS2 (8)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'AFCS lateral type';
end
function retVal = getDefaultValue()
retVal = ENUM_AFCS_LAT.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end