Skip to main content

ChkQuery_EventTimestamp64_AsyncResult

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

Int64 ChkQuery_EventTimestamp64_AsyncResult(dword CheckId);

Method Syntax

Method Syntax
check.QueryEventTimestamp64AsyncResult();

Description

Retrieves time stamp of last fired event. The data has to be queried first using testWaitForCheckQuery.

Parameters

  • CheckId: Identifier of the queried Check.

Return Values

Example

Int64 result;
dword checkId;
checkId = ChkStart_MsgRelCycleTimeViolation(VehicleMotion, 0.9, 1.1);
// ... execute test sequence
result = testWaitForCheckQuery(checkId, 10000);
if (result == 1)
  result = ChkQuery_EventTimestamp64_AsyncResult(checkId);