gusucode.com > vnt工具箱matlab源码程序 > vnt/vnt/canHWInfo.m

    function info = canHWInfo()
% canHWInfo Return information on available CAN devices.
%
%   INFO = CANHWINFO() returns information about devices and displays
%   the information on a per vendor and channel basis. Use GET on the 
%   output of CANHWINFO to obtain more detailed results.
%
%   Example:
%       info = canHWInfo()
%       get(info)
% 
%   See also VNT.
%

% Authors: JDP
% Copyright 2007-2008 The MathWorks, Inc.

    % Return CAN hardware information.
    info = can.HardwareInfo();
end