Skip to main content
Open topic with navigation CAPL Functions » J1939 » J1939 NL » J1939AppRequestIndication

J1939AppRequestIndication (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

dword J1939AppRequestIndication( 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 J1939AppRequestIndication( LONG ecuHdl, LONG source, LONG dest, LONG page, LONG pgNum)
{
  /* user code */
  return 0;
}