Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » File Server Interaction Layer (FS IL) » FSIL_SetSignalRaw

FSIL_SetSignalRaw

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long FSIL_SetSignalRaw( dbSignal signal, long value ); // form 1
long FSIL_SetSignalRaw( dbNode fs, 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
  • fs: FS simulation node to apply the function

Return Values

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

Example

void SendLanguageCommand_English()
{
  FSIL_SetSignalRaw( LC_FS::LanguageCodeCmd, 0x6E65 );
}