Skip to main content

C2xGetThisValue64

Valid for: CANoe DE

Function Syntax

long C2xGetThisValue64( long offset );

Description

This function reads the data of a received packet in Intel format.

Parameters

  • offset: Byte offset relative to the beginning of a data packet or the payload (see description above).

Return Values

Read value.

Example

void OnC2xPacket( long channel, long dir, long radioChannel, long signalStrength, long signalQuality, long packet )
{
  qword value64;
  value64 = C2xGetThisValue64( 14 );
  write( "Value %I64d", value64 );
}