Files
sunny360vfe_proj/controllers/ENUM_AFCS_LAT.m
T

27 lines
979 B
Matlab
Raw Normal View History

2025-06-04 10:15:42 +08:00
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) %着陆段飞手控航向
MC_HOLD_POS_VCTRL1 (9) %旋翼航点跟踪给定速度
2025-06-04 10:15:42 +08:00
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