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.

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