Skip to main content
Open topic with navigation CAPL Functions » LIN » LINtp_FCPreTransmit

LINtp_FCPreTransmit

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void LINtp_FCPreTransmit(byte fcData[]);

Description

When the usage of FlowControl frames has been activated with LINtp_ActivateFCTransmission, each FlowControl frame is forwarded to this callback function before it is sent.

Parameters

  • fcData: Data of the FC frame.

Return Values

Example

void LINtp_FCPreTransmit (byte fcData[])
{
  write( "FlowControl to be sent: %02x %02x %02x %02x (%d byte)"
  , fcData[0] , fcData[1] , fcData[2] , fcData[3], elcount(fcData));
}