Main Content

j1939ParameterGroupImport

Import J1939 log file

Description

example

pgs = j1939ParameterGroupImport(file,vendor,database) reads the input file as a CAN message log file from the specified vendor. Using the specified CAN database, the CAN messages are converted into J1939 parameter groups, and assigned to the timetable pgs.

Examples

collapse all

Read a CAN message log file, and generate J1939 parameter groups according to a CAN database.

db = canDatabase('MyDatabase.dbc');
pgs = j1939ParameterGroupImport('MsgLog.asc','Vector',db);

Input Arguments

collapse all

CAN message log file, specified as a character vector or string.

Example: 'MsgLog.asc'

Data Types: char | string

Vendor file format, specified as a character vector or string. The supported file formats are those defined by Vector and Kvaser.

Example: 'Vector'

Data Types: char | string

CAN database, specified as a database handle.

Output Arguments

collapse all

J1939 parameter groups, returned as a timetable of parameter groups.

Version History

Introduced in R2017a