Skip to main content

C2xRemoveNodeAssignment

Valid for: CANoe DE

Function Syntax

long C2xRemoveNodeAssignment(long stationHandle);

Description

Removes an assigned database node from an ITS station.

Parameters

  • stationHandle: The station handle for which the node assignment should be removed.

Return Values

  • 0: OK
  • -1: Internal error
  • 1: No station found for parameter stationHandle
  • 2: No error but station had no node assigned to remove

Example

on key 'c'
{
    long stationHdl;

    stationHdl = C2xGetStationHandle("Car1");
    C2xRemoveNodeAssignment(stationHdl);
}