Documentation Index
Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
coTfsLssWaitForIdentifyRemoteSlaveSequence (Level 2)
Valid for: CANoe DE • CANoe:lite DE • CANoe4SW DE
Function Syntax
long coTfsLssWaitForIdentifyRemoteSlaveSequence( dword[] pVendorId, dword[] pProductCode, dword[] pRevNoLowBound, dword[] pRevNoHighBound, dword[] pSerialNoLowBound, dword[] pSerialNoHighBound );
Description
This function waits for a LSS identify remote slave sequence. For a successful test all parameters are to be received within a defined time-out.
Parameters
- pVendorId: Vendor-ID
- pProductCode: Product code
- pRevNoLowBound: Low boundary of the revision number.
- pRevNoHighBound: High boundary of the revision number.
- pSerialNoLowBound: Low boundary of the serial number.
- pSerialNoHighBound: High boundary of the serial number.
Return Values
Error code
Example
dword pVendorId[1];
dword pProductCode[1];
dword pRevNoLowBound[1];
dword pRevNoHighBound[1];
dword pSerialNoLowBound[1];
dword pSerialNoHighBound[1];
/* waits for a LSS identify remote slave sequence */
if (coTfsLssWaitForIdentifyRemoteSlaveSequence( pVendorId, pProductCode, pRevNoLowBound, pRevNoHighBound, pSerialNoLowBound, pSerialNoHighBound ) == 1) {
/* waits for LSS identify remote slave sequence */
/* received values can be found in pVendorId, pProductCode, pRevNoLowBound, pRevNoHighBound, pSerialNoLowBound, pSerialNoHighBound */
}