Files
sunny360vfe_proj/controllers/ENUM_CSAS_PITCH.m
T
2025-06-04 14:13:22 +08:00

23 lines
513 B
Matlab

classdef ENUM_CSAS_PITCH < Simulink.IntEnumType
enumeration
OFF (0)
COMMAND(1)
THT_CTRL (2)
Q_CTRL (3)
DAMPING (4)
AZ_CTRL (5)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'CSAS Pitch type';
end
function retVal = getDefaultValue()
retVal = ENUM_CSAS_PITCH.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end