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

FSIL_OnTxMessage (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void FSIL_OnTxMessage( pg * txPG );

Description

Is called if a message was sent successfully.

Parameters

  • txPG: Message which was sent

Return Values

Example

void FSIL_OnTxMessage( pg * txPG )
{
  switch( txPG.PGN ) {
  case 0xFF01:
    break;
  }
}