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

    % Vehicle Network Toolbox
% Version 3.2 (R2016b) 25-Aug-2016
%
% Information and help.
%   canHWInfo                  - Obtain information about available devices.
%   canSupport                 - Create a technical support log.
%
% MATLAB apps.
%   canTool                    - Tool for viewing live message traffic.
%
% MDF file access.
%   mdf                     - Open a reference to an MDF file.
%   asam.MDF.saveAttachment - Export an attachment from an MDF file.
%   asam.MDF.read           - Read channel data from an MDF file.
%
% CAN channel operations.
%   canChannel                  - Create a communication channel connected to a device.
%   can.Channel.filterAllowAll  - Enable reception of all messages of a given type.
%   can.Channel.filterAllowOnly - Enable reception of specific messages.
%   can.Channel.filterBlockAll  - Disable reception of all messages of a given type.
%   can.Channel.start           - Set a channel online.
%   can.Channel.stop            - Set a channel offline. 
%   can.Channel.receive         - Receive message(s) from a channel.
%   can.Channel.discard         - Discard all available message(s) on a channel.
%   can.Channel.transmit        - Transmit message(s) on a channel.
%   can.Channel.transmitPeriodic      - Transmit periodic message(s) on a channel.
%   can.Channel.transmitEvent         - Transmit on event message(s) on a channel.
%   can.Channel.transmitConfiguration - View configured transmit messages on a channel.
%   can.Channel.replay          - Retransmit logged message(s) using timestamps.
%
% CAN database operations.
%   canDatabase                 - Create a reference to a database file.
%   can.Database.attributeInfo  - Obtain information about attributes.
%   can.Database.nodeInfo       - Obtain information about nodes.
%   can.Database.messageInfo    - Obtain information about messages.
%   can.Database.signalInfo     - Obtain information about signals.
%   can.Database.valueTableText - Translate a value table value to text.
%
% CAN message operations.
%   canMessage                 - Create a message.
%   canMessageImport           - Import message log files from third party tools.
%   can.Message.extractAll     - Obtain all message(s) from an array by name/identifier.
%   can.Message.extractRecent  - Obtain most recent message(s) from an array by name/identifier.
%   can.Message.extractTime    - Obtain message(s) from an array by timestamp.
%   can.Message.attachDatabase - Attach a database file to message(s).
%   can.Message.pack           - Load raw data into message(s).
%   can.Message.unpack         - Unload raw data from message(s).
%
% Kvaser CAN device specific operations.
%   can.kvaser.Channel.configBusSpeed  - Set a channel's bit timing.
% National Instruments CAN device specific operations.
%   can.ni.xnet.Channel.configBusSpeed - Set a channel's bit timing.
% Vector CAN device specific operations.
%   can.vector.Channel.configBusSpeed  - Set a channel's bit timing.
% PEAK-System CAN device specific operations.
%   can.peaksystem.pcanbasic.Channel.configBusSpeed  - Set a channel's bit timing.
%
% J1939 channel operations.
%   j1939Channel                  - Create a J1939 communication channel connected to a device.
%   j1939.Channel.filterAllowAll  - Enable reception of all parameter groups of a given type.
%   j1939.Channel.filterAllowOnly - Enable reception of specific parameter groups.
%   j1939.Channel.filterBlockOnly - Disable reception of specific parameter groups.
%   j1939.Channel.start           - Set a J1939 channel online.
%   j1939.Channel.stop            - Set a J1939 channel offline. 
%   j1939.Channel.receive         - Receive parameter group(s) from a J1939 channel.
%   j1939.Channel.discard         - Discard all available parameter group(s) on a J1939 channel.
%   j1939.Channel.transmit        - Transmit parameter group(s) on a J1939 channel.
%   j1939.Channel.configBusSpeed  - Set a J1939 channel's bit timing.
%
% J1939 parameter group operations.
%   j1939ParameterGroup                - Create a J1939 parameter group.
%   j1939.ParameterGroup.extractAll    - Obtain all parameter group(s) from an array by name.
%   j1939.ParameterGroup.extractRecent - Obtain most recent parameter group(s) from an array by name.
%   j1939.ParameterGroup.extractTime   - Obtain parameter group(s) from an array by timestamp.
%
% XCP A2L file operations.
%   xcpA2L                     - Parses an A2L file for use with XCP connections.
%   xcp.A2L.getEventInfo       - Query for information for a specified event by name.
%   xcp.A2L.getMeasurementInfo - Query for information for a specified measurement by name.
%
% XCP channel operations.
%   xcpChannel              - Creates an XCP channel able to connect to a slave module.
%   xcp.Channel.connect     - Starts an active connection to the slave module.
%   xcp.Channel.disconnect  - Stops an active connection to the slave module.
%   xcp.Channel.isConnected - Returns a boolean value to indicate active connection to the slave.
%
% XCP channel DAQ/STIM list operations.
%   xcp.Channel.createMeasurementList - Configure a DAQ/STIM list on the XCP channel.
%   xcp.Channel.freeMeasurementLists  - Remove all DAQ/STIM lists from the XCP channel.
%   xcp.Channel.viewMeasurementLists  - View the configured DAQ/STIM lists.
%   xcp.Channel.startMeasurement      - Start all configured DAQ/STIM lists.
%   xcp.Channel.stopMeasurement       - Stop all configured DAQ/STIM lists.
%   xcp.Channel.isMeasurementRunning  - Returns a boolean value to indicate active DAQ/STIM list activity.
%   xcp.Channel.readDAQListData       - Read samples of the specified measurement from a DAQ list.
%   xcp.Channel.writeSTIMListData     - Write a new value of the specified measurement to a STIM list.
%
% XCP channel direct data access.
%   xcp.Channel.readSingleValue  - Read a sample of the specified measurement from direct memory.
%   xcp.Channel.writeSingleValue - Write a new value of the specified measurement to direct memory.

% Copyright 2007-2015 The MathWorks, Inc.