Skip to main content
Open topic with navigation CAPL Functions » K-Line » _KLine_FastInitPatternReceived

_KLine_FastInitPatternReceived

Valid for: CANoe DE

Function Syntax

_KLine_FastInitPatternReceived(dword TiniL_us, dword TWup_us, int64 timestampTWup)

Description

Called when a fast init pattern has been received. Called for the following values:
  • TinL: 25 ms +- 4 ms
  • TWup: 50 ms +- 4 ms

Parameters

  • TiniL_us: TiniL time in us.
  • TWup_us: TWup time in us.
  • timestampTWup: End of fast init pattern timestamp

Return Values

Example

_KLine_FastInitPatternReceived( dword TiniL_us, dword Twup_us, int64 timestampTwup)
{
   write(FastInitPattern @%.3f received, type %d, TiniL = %d us, Twup = %d us", timestampTwup / cNs2s, type, TiniL_us, Twup_us);
}