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

21 lines
477 B
Matlab

classdef ENUM_CSAS_ROLL < Simulink.IntEnumType
enumeration
OFF (0)
COMMAND(1)
ROLL_CTRL (2)
ROLLRATE_CTRL (3)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'CSAS roll type';
end
function retVal = getDefaultValue()
retVal = ENUM_CSAS_ROLL.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end