Skip to main content
Open topic with navigation CAPL Functions » FlexRay » frSendSymbol

frSendSymbol

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

frSendSymbol( long <type>, long <param>, int channel );

Description

This function sends an MTS symbol in the next possible symbol window if the Communication Controller is in normal mode (synchronized).

Parameters

  • <type>: Not used at this time. Reserved for future expansions. Should always be equal to 0.
  • <param>: Not used at this time. Reserved for future expansions. Should always be equal to 0.
  • channel: Channel number (or cluster number)

Return Values

Example

This example sends a MTS symbol when a key is pressed in the next possible cycle.
on key 'm'
{
   frSendSymbol(0 /* not used */, 0 /* not used */, %CHANNEL%);
}
Note The cluster parameters must define a symbol window! A CAS cannot be sent explicitly. It is reserved for the start-up procedure. For sending a wake-up see function resetFlexRayCCEx.