Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » File Server Interaction Layer (FS IL) » FSIL_ControlInit

FSIL_ControlInit

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long FSIL_ControlInit(); // form 1
long FSIL_ControlInit(dbNode fs); // form 2

Description

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

Parameters

  • fs: FS 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
{
    FSIL_ControlInit();
}