Skip to main content
Open topic with navigation

frGetNullFrameCount

CAPL Functions » FlexRay » frGetNullFrameCount Valid for: CANoe DE • CANoe4SW DE Note
FlexRay bus statistics for CAPL is deactivated by default and must be activated before calling this function. You can do this by calling function frEnableStatistics in an on start handler, see example below.

Function Syntax

long frGetNullFrameCount(long channel, long channelMask);

Description

Gets the total count of null frames (including null frames resulting from unused slots in cyclic multiplexing) of a FlexRay channel.

Parameters

  • channel
    FlexRay channel (1…32).
  • channelMask
    Channel mask
    • 1 = subchannel A
    • 2 = subchannel B

Return Values

Total count of null frames, if FlexRay statistics is enabled; 0 otherwise.

Example

on start
{
  frEnableStatistics(1, 1); // Enable FlexRay statistics on channel 1
}

void myStatisticFunc()
{
  long value;

  value = frGetNullFrameCount(1, 2); // Channel 1, subchannel B
  // … do something with the value …
}