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

Iso11783IL_GetLastError

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long Iso11783IL_GetLastError(); // form 1
long Iso11783IL_GetLastError(dbNode node); // form 2

Description

Gets the return value of the last called ISO11783 IL function.

Parameters

  • node: Simulation node to apply the function.

Return Values

Example

on key 't'
{
  BYTE date = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 };
  ISO11783ILSetSignalRaw( EEC1::EngSpeed, 6, data );
  write( "Errorcode = %d", Iso11783IL_GetLastError() );
}