Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Task Controller Interaction Layer (TC IL) » TCIL_ControlInit

TCIL_ControlInit

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long TCIL_ControlInit(); // form 1
long TCIL_ControlInit(dbNode tc); // form 2

Description

This function can only be used in on preStart, to suppress the auto-start function of the IL.

Parameters

  • tc: TC simulation node to apply the function.

Return Values

  • 0: Function has been executed successfully
  • < 0: An error has occurred, see IL Error Code

Example

Example form 1
on preStart
{
    TCIL_ControlInit();
}