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

FSIL_ResetBlockedRxMessage

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

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

Description

Resets the change of a single ISO11783FSIL_BlockRxMessage call. The message to unblock is specified by PGN, source address and a part of the first eight data bytes.

Parameters

  • pgn: Use same value as in ISO11783FSIL_BlockRxMessage to stop blocking the message.
  • sourceAddress: Use same value as in ISO11783FSIL_BlockRxMessage to stop blocking the message.
  • filterMask: Use same value as in ISO11783FSIL_BlockRxMessage to stop blocking the message.
  • filterValue: Use same value as in ISO11783FSIL_BlockRxMessage to stop blocking the message.
  • node: Simulation node to apply the function.

Return Values

  • 0: Blocking has been stopped successfully
  • -1: There is no matching entry made by ISO11783FSIL_BlockRxMessage
  • -102: An invalid parameter is used

Example