www.gusucode.com > vnt工具箱matlab源码程序 > vnt/vntguis/+can/FilterStates.m

    classdef (Hidden) FilterStates
% FilterStates Enumeration for CAN message filter state control.
%
%   This class defines values for configuring filters for CAN messages.
%   It is an enumerated class with an entry for each allowed state for a
%   filter. 
%

% Copyright 2010 The MathWorks, Inc.

    enumeration
        % AllowAll - Allow all messages to pass the filter.
        AllowAll
        % BlockAll - Block all messages from passing the filter.
        BlockAll
        % AllowOnly - Define a custom filter in which only specified
        %   messages shall pass the filter.
        AllowOnly
    end
    
end