Skip to main content
Open topic with navigation

VTIL_OnError (Callback)

CAPL Functions » ISO11783 » Virtual Terminal Interaction Layer (VT IL) » VTIL_OnError Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void VTIL_OnError( long errorCode, long param );

Description

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

Parameters

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

Return Values

Example

void VTIL_OnError( long errorCode, long param )
{
  write( "Error %d, parameter %d", errorCode, param );
}