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

TCIL_OnTxMessage (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void TCIL_OnTxMessage( pg * txPG );

Description

This callback function is called from the TC IL if a message was sent successfully.

Parameters

  • txPG: Message which was sent

Return Values

Example

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