Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Task Controller Interaction Layer (TC IL) » TCIL_SetSignal

TCIL_SetSignal

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long TCIL_SetSignal( dbSignal signal, double value ); // form 1
long TCIL_SetSignal( dbNode tc, dbSignal signal, double value ); // form 2

Description

Sets the signal to the specified physical 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: physical value
  • tc: TC simulation node to apply the function

Return Values

Example

void SendLanguageCommand_English()
{
  TCIL_SetSignal( LC_TC::LanguageCodeCmd, 0x6E65 );
}