Main Content

freeMeasurementLists

从 XCP 通道中删除所有测量变量列表

说明

示例

freeMeasurementLists(xcpch) 从指定的 XCP 通道中删除所有已配置的测量变量列表。

示例

全部折叠

创建两个数据采集列表并将其删除。

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

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

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

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:
   PWM

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

释放这些测量变量列表。

freeMeasurementLists(xcpch)

输入参数

全部折叠

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

版本历史记录

在 R2013a 中推出