Files
sunny360vfe_proj/controllers/ENUM_CSAS.m
T

20 lines
433 B
Matlab
Raw Normal View History

2025-06-04 14:13:22 +08:00
classdef ENUM_CSAS < Simulink.IntEnumType
enumeration
OFF (0)
MANUAL (1)
COMMAND(2)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'CSAS type';
end
function retVal = getDefaultValue()
retVal = ENUM_CSAS.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end