Iso11783IL_GetLastError
Valid for: CANoe DE • CANoe4SW DEFunction Syntax
Description
Gets the return value of the last called ISO11783 IL function.Parameters
- node: Simulation node to apply the function.
Return Values
- 0: success
- < 0: error code
long Iso11783IL_GetLastError(); // form 1
long Iso11783IL_GetLastError(dbNode node); // form 2
on key 't'
{
BYTE date = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 };
ISO11783ILSetSignalRaw( EEC1::EngSpeed, 6, data );
write( "Errorcode = %d", Iso11783IL_GetLastError() );
}