Skip to main content

coTfsLssSendFastScanRequest (Level 2)

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

Function Syntax

long coTfsLssSendFastScanRequest( dword idNumber, dword bitCheck, dword sub, dword next );

Description

This function sends a LSS fast scan protocol request.

Parameters

  • idNumber: FastScan ID
  • bitCheck: FastScan bitcheck value, used to define the used bitmask for LSS FastScan.
  • sub: FastScan sub, defines which part of the LSS-ID is transmitted in idNumber.
    • 0 - vendor-ID
    • 1 - product code
    • 2 - revision number
    • 3 - serial number
  • next: FastScan next, specifies the sub for the next request.

Return Values

Error code

Example

/* send LSS fast scan protocol request */

if (coTfsLssSendFastScanRequest(0x000002, 28, 1, 1) == 1) {
  /* request sent */
}