Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Node Layer » Iso11783AppRequestIndication

Iso11783AppRequestIndication (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

dword Iso11783AppRequestIndication( long ecuHandle, long source, long dest, long page, long pgNum );

Description

This function indicates to the ECU that the “OnRequest” parameter group has been received. The application must respond appropriately (see specification). It should be noted that this function is only called once for each logical ECU within a node when global PGs are received.

Parameters

  • ecuHandle: ECU handle
  • source: Source address
  • dest: Destination address
  • page: Data page bit
  • pgNum: Requested PGN

Return Values

Example

dword Iso11783AppRequestIndication( LONG ecuHdl, LONG source, LONG dest, LONG page, LONG pgNum );
{
  /* user code */
  return 0;
}