Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Interaction Layer » Iso11783IL_OPOnIdentifyWorkingSet

Iso11783IL_OPOnIdentifyWorkingSet

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long Iso11783IL_OPOnIdentifyWorkingSet();

Description

The function is called by the ISO11783 Interaction Layer to determine if the interaction layer is responsible for sending the Working Set Master message during the object pool initialization (after the VT status message appears). If this callback function is not implemented or it returns the value 1, the Working Set Master message is sent by the ISO11783 Interaction Layer. The transmitted number of Working Set members is 1. If the return value of the function is 0, the ISO11783 Interaction Layer doesn’t send the Working Set Master message. Instead, the CAPL application sends the Working Set Master message.

Parameters

Return Values

  • 1: Working Set Master message is sent by the ISO11783 Interaction Layer
  • 0: Working Set Master message is sent by the CAPL application

Example

LONG Iso11783IL_OPOnIdentifyWorkingSet()
{
  return 1;
}