Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Virtual Terminal Interaction Layer (VT IL) » VTIL_SetSignalRaw

VTIL_SetSignalRaw

Feature availability for your product: CANoe DE • CANoe4SW DE

Function Syntax

long VTIL_SetSignalRaw( dbSignal signal, long value );
long VTIL_SetSignalRaw( dbNode vt, dbSignal signal, long value ); // form 2

Description

Sets the signal to the specified raw value. The message of the signal is sent according to the configured send type.

Parameters

  • signal: Signal name from database. The signal must be assigned to the node as Tx signal.
  • value: raw value
  • vt: VT simulation node to apply the function

Return Values

  • 0: Function has been executed successfully
  • < 0: An error has occurred, see IL Error Code

Example

Example for simulation node:
void SendLanguageCommand_English()
{
  VTIL_SetSignalRaw( LC_VT::LanguageCodeCmd, 0x6E65 );
}