Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Node Layer » Iso11783AppTxIndication

Iso11783AppTxIndication (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

dword Iso11783AppTxIndication( long ecuHandle, long txPG, long source, long dest );

Description

Indicates that a PG has been sent successfully. The function for determining the actual sending time can be useful, especially in the case of a fragmented transfer or higher busload. Use the function Iso11783GetRxData to get the data bytes of the parameter group.

Parameters

  • ecuHandle: ECU handle
  • txPG: PGN of the sent parameter group
  • source: Source address
  • destination: Destination address

Return Values

Example

dword Iso11783AppTxIndication( LONG ecuHdl, LONG txPG, LONG source, LONG dest )
{
  char data[50];
  Iso11783GetRxData( elCount(data), data );
  /* user code */
  return 0;
}