gusucode.com > vnt工具箱matlab源码程序 > vnt/vnt/+j1939/TPRxState.m

    classdef TPRxState
% TPRxState Enumeration class for J1939 transport protocol receive state.
%
%   This class defines an enumeration which is the possible states for the
%   J1939 transport protocol reception activity for a J1939 channel.

% Authors: Jaremy Pyle
% Copyright 2015 The MathWorks, Inc.

enumeration
    % Acquiring - Object state indicating it is currently
    % accumulating data transfer objects.
    Acquiring
    % Completed - Object state indicating that the multiframe data
    % transfer sequence is complete and the final parameter group is
    % available.
    Completed
    % Failed - Object state indicating that the data transfer
    % sequence failed, disconnected, or was stopped.
    Failed
end

end