Files

22 lines
468 B
Matlab
Raw Permalink Normal View History

2025-06-04 10:15:42 +08:00
classdef ENUM_AT < Simulink.IntEnumType
enumeration
OFF (0)
MANUAL (1)
COMMAND(2)
AS (3)
GS (4)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'Auto throttle type';
end
function retVal = getDefaultValue()
retVal = ENUM_AT.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end