Files
sunny360vfe_proj/controllers/ENUM_INS_STATUS.m
T

23 lines
540 B
Matlab
Raw Normal View History

2025-06-04 14:13:22 +08:00
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