Skip to main content
Open topic with navigation

J1939ILControlStart

CAPL Functions » J1939 » J1939 IL » J1939ILControlStart

Tool Availability

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long J1939ILControlStart(); // form 1
  • long J1939ILControlStart(dbNode node); // form 2
  • long J1939ILControlStart(byte address); // form 3
  • long J1939ILControlStart(dbNode node, byte address); // form 4

Description

The node starts Address Claiming (if NMT is activated). If the Address Claiming was successful, cyclic messages are sent. The source address can be specified optionally. If it is not specified the node attribute NmStationAddress must be defined.

Parameters

  • address: source address of the node (optional)
  • node: Simulation node to apply the function

Return Values

0 on success or IL Error Code

Example

on start
{
    J1939ILControlStart();
}