Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Node Layer » Iso11783GetLastErrorText

Iso11783GetLastErrorText

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

dword Iso11783GetLastErrorText( dword bufferSize, char buffer[] );

Description

This function gets the description of the last occurred error.

Parameters

  • bufferSize: Size of buffer for error description
  • buffer: Contains the error description

Return Values

Number of characters that are copied to buffer

Example

dword size = 100;
char errText[size];

Iso11783GetLastErrorText(size, errText);