22 lines
497 B
Matlab
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
|
|
|