23 lines
540 B
Matlab
23 lines
540 B
Matlab
|
|
classdef ENUM_INS_STATUS < Simulink.IntEnumType
|
||
|
|
enumeration
|
||
|
|
DISCONNECTED (0)
|
||
|
|
RESETTING (1)
|
||
|
|
INS_ONLY (2)
|
||
|
|
INS_GNSS (3)
|
||
|
|
INS_GNSS_MAG (4)
|
||
|
|
INS_GNSS_HDG (5)
|
||
|
|
end
|
||
|
|
methods (Static = true)
|
||
|
|
function retVal = getDescription()
|
||
|
|
retVal = 'INS status';
|
||
|
|
end
|
||
|
|
function retVal = getDefaultValue()
|
||
|
|
retVal = ENUM_INS_STATUS.DISCONNECTED;
|
||
|
|
end
|
||
|
|
function retVal = addClassNameToEnumNames()
|
||
|
|
retVal = true;
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|