Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Interaction Layer » Iso11783IL_ControlStop

Iso11783IL_ControlStop

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long Iso11783IL_ControlStop(); // form 1
  • long Iso11783IL_ControlStop( dword option ); // form 2
  • long Iso11783IL_ControlStop( dbNode node ); // form 3
  • long Iso11783IL_ControlStop( dbNode node, dword option ); // form 4

Description

Deactivates the IL and stops sending cyclic messages. A Cannot Claim Address message is sent, if the NMT is activated and the message is not suppressed with the parameter option set to 1.

Parameters

  • option: Options
    1: Suppress sending Cannot Claim Address message.
  • node: Simulation node to apply the function.

Return Values

0 on success or error code

Example

on key 's'
{
    Iso11783IL_ControlStop(1);
}