Main Content

isMeasurementRunning

Indicate if measurement is active

Description

example

isMeasurementRunning(xcpch) returns a logical indicating if the configured measurements are active and running.

Examples

collapse all

Set up a DAQ measurement list and start it. Verify if this list is running.

Create an XCP channel with a CAN server module.

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

Set up a data acquisition measurement list with the '10 ms' event and 'Bitslice' measurement and determine if the measurement is running.

createMeasurementList(xcpch,'DAQ','10 ms','BitSlice')
isMeasurementRunning(xcpch)
ans =

     0

Start your measurement and verify that the measurement is running.

startMeasurement(xcpch)
isMeasurementRunning(xcpch)
ans =

     1

Input Arguments

collapse all

XCP channel, specified as an XCP channel object created using xcpChannel. The XCP channel object can then communicate with the specified server module defined by the A2L file.

Version History

Introduced in R2013a