Files
2025-06-04 14:13:22 +08:00

23 lines
519 B
Matlab

classdef ENUM_CSAS_YAW < Simulink.IntEnumType
enumeration
OFF (0)
COMMAND (1)
R_CTRL (2)
DAMPING (3)
PSIDOT_CTRL (4)
AY_CTRL (5)
end
methods (Static = true)
function retVal = getDescription()
retVal = 'CSAS Yaw type';
end
function retVal = getDefaultValue()
retVal = ENUM_CSAS_YAW.OFF;
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end