Skip to main content
Open topic with navigation CAPL Functions » J1939 » J1939 IL » J1939ILOnError

J1939ILOnError (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void J1939ILOnError( long errorCode, long param )

Description

This callback function is called from the J1939 IL if an error occurred.

Parameters

  • errorCode: IL Error Code
  • param: additional parameter depending on the error code

Return Values

Example

void J1939ILOnError( LONG errorCode, LONG param )
{
  write( "Error %d, parameter %d", errorCode, param );
}