Files
sunny360vfe_proj/controllers/ENUM_AS_SEL.m
T
LyuWeiye 0ec99474cc init
2025-06-04 10:15:42 +08:00

22 lines
497 B
Matlab

classdef ENUM_AS_SEL < Simulink.IntEnumType
enumeration
IAS (0)
TAS (1)
MACH (2)
QC_TAS (3)
GLIDE_TAS (4)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'Air Spped selection for Autopilot';
end
function retVal = getDefaultValue()
retVal = ENUM_AS_SEL.IAS;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end