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

FSIL_AcceptRxPG

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long FSIL_AcceptRxPG( pg * rxPG );

Description

Checks if the received parameter group is addressed to the FS IL.

Parameters

  • rxPG: Receive parameter group

Return Values

  • < 0: IL Error Code
  • 0: Parameter group is not addressed to the IL
  • 1: Parameter group is addressed to the IL

Example

on pg TPRS
{
  if (FSIL_AcceptRxPG( this ) <= 0) return;
  // ...
}