Skip to main content

AREthILControlInit

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long AREthILControlInit();

Description

Initialization of AUTOSAR Eth IL. Prevents the AUTOSAR Eth IL from starting automatically. If this function is used, the AUTOSAR Eth IL must then be started with the AREthILControlStart function. This function may only be used in on preStart.

Parameters

Return Values

  • 0: The function was successfully executed
  • >0: Error code

Example

on preStart
{
  // prevent auto start
  AREthILControlInit();
}
See Also