Main Content

viewMeasurementLists

查看 XCP 通道上已配置的测量变量列表

说明

示例

viewMeasurementLists(xcpch) 显示此 XCP 通道的所有已配置的测量变量列表集。

示例

全部折叠

创建一个 XCP 通道并配置一个数据采集测量变量列表,然后查看配置的测量变量列表。

创建一个对象来解析 A2L 文件并将其连接到 XCP 通道。

a2lfile = xcpA2L('XCPSIM.a2l')
xcpch = xcpChannel(a2lfile, 'CAN', 'Vector', 'Virtual 1', 1)
xcpch = 

  Channel with properties:

              ServerName: 'CPP'
             A2LFileName: 'XCPSIM.a2l'
          TransportLayer: 'CAN'
    TransportLayerDevice: [1x1 struct]
      SeedKeyCallbackFcn: []
                KeyValue: []

将通道连接到服务器模块。

connect(xcpch)

使用 '10 ms' 事件和 'PMW' 测量变量设置一个数据采集测量变量列表。

createMeasurementList(xcpch,'DAQ','10 ms', {'BitSlice0','PWMFiltered','Triangle'});

使用 '100ms' 事件和 'PWMFiltered' 以及 'Triangle' 测量变量创建另一个测量变量列表。

createMeasurementList(xcpch,'DAQ','100ms', {'PWMFiltered','Triangle'});

查看测量变量列表的详细信息。

viewMeasurementLists(xcpch)
DAQ List #1 using the "10 ms" event @ 0.010000 seconds and the following measurements:
   PMW

DAQ List #2 using the "100ms" event @ 0.100000 seconds and the following measurements:
   PWMFiltered
   Triangle

输入参数

全部折叠

XCP 通道,指定为使用 xcpChannel 创建的 XCP 通道对象。随后,该 XCP 通道对象可以与 A2L 文件定义的指定服务器模块通信。

版本历史记录

在 R2013a 中推出