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

TCIL_ResetDelayedRxMessage

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long TCIL_ResetDelayedRxMessage(dword pgn, dword sourceAddress, qword filterMask, qword filterValue, dword behavior); // form 1
long TCIL_ResetDelayedRxMessage(dbNode node, dword pgn, dword sourceAddress, qword filterMask, qword filterValue, dword behavior); // form 2

Description

Resets the change of a single TCIL_DelayRxMessage call. The corresponding message is specified by PGN, source address, destination address and a part of the first eight data bytes.

Parameters

  • pgn: Use same value as in TCIL_DelayRxMessage to stop manipulation of the message.
  • sourceAddress: Use same value as in TCIL_DelayRxMessage to stop manipulation of the message.
  • filterMask: Use same value as in TCIL_DelayRxMessage to stop manipulation of the message.
  • filterValue: Use same value as in TCIL_DelayRxMessage to stop manipulation of the message.
  • behavior:
    • 0: Do not process currently delayed messages
    • 1: Process currently delayed messages after the defined delay
  • node: Simulation node to apply the function.

Return Values

  • 0: Function has been executed successfully
  • -102: An invalid parameter is used

Example