Main Content

writeSTIM

Write scaled value of specified measurement to STIM list

Description

example

writeSTIM(xcpch,measurementName,value) writes the scaled value to the specified measurement on the XCP channel.

Examples

collapse all

Create an XCP channel connected to a Vector CAN device on a virtual channel. Set up a data stimulation list and write to a specified measurement.

a2lObj = xcpA2L('myFile.a2l');
channelObj = xcpChannel(a2lObj,'CAN','Vector','CANcaseXL 1',1);
connect(channelObj);
createMeasurementList(channelObj,'STIM','Event1','Measurement1');
startMeasurement(channelObj);
writeSTIM(channelObj,'Measurement1',newValue);

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.

Name of a single XCP measurement specified as a character vector or string. Make sure measurementName matches the corresponding measurement name defined in your A2L file.

Data Types: char | string

Value of the measurement, specified as a numeric value.

Version History

Introduced in R2018b