Files
powertrain-build/test_data/test_repo/Models/Common/VcEnumDefinitions/EmMod.m
Henrik Wahlqvist 38a1ecd2dc ARTCSF-3856: Set up simple sample projects and jobs/tests
Change-Id: I5b397ad0e490343ee9a751f81c40e3ebc9ff2bb5
2025-09-04 12:04:07 +00:00

27 lines
579 B
Matlab

classdef EmMod < Simulink.IntEnumType
enumeration
Initiation(0)
Standby(1)
TorqueControl(2)
PreCharge(3)
PowerDown(4)
Fault(5)
end
methods (Static)
function retVal = getDescription()
retVal = 'EmMod';
end
function retVal = getDefaultValue()
retVal = EmMod.Initiation;
end
function retVal = getDataScope()
retVal = 'Exported';
end
function retVal = addClassNameToEnumNames()
retVal = true;
end
end
end