Skip to main content

coTfsLssSendIdentifyRemoteSlaveSequence (Level 2)

Valid for: CANoe DE • CANoe:lite DE • CANoe4SW DE

Function Syntax

long coTfsLssSendIdentifyRemoteSlaveSequence( dword vendorId, dword productCode, dword revNoLowBound, dword revNoHighBound, dword serialNoLowBound, dword serialNoHighBound );

Description

This function sends a LSS identify remote slave sequence.

Parameters

  • vendorId: Vendor-ID
  • productCode: Product code
  • revNoLowBound: Low boundary of the revision number.
  • revNoHighBound: High boundary of the revision number.
  • serialNoLowBound: Low boundary of the serial number.
  • serialNoHighBound: High boundary of the serial number.

Return Values

Error code

Example

/* sends LSS identify remote slave sequence */

if (coTfsLssSendIdentifyRemoteSlaveSequence( 0x1234, 0x43214321, 0, 0xFFFFFFFF, 0, 1000 ) == 1) {
  /* received LSS identify remote slave sequence, sent response with selected parameters */
}