Skip to main content
Open topic with navigation CAPL Functions » J1939 » GB/T 27930 IL » GBT27930IL_SetSignalRaw

GBT27930IL_SetSignalRaw

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

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

Return Values

Example

on key 't'
{
    GBT27930IL_SetSignalRaw( EEC1::EngSpeed, 12000 );
}