long CommandComputeLong ( long  sequencerNumber,
RSICommandOperator  commandOperator,
long  inputAddress,
long  outputAddress,
long  value 
)

Description:
CommandComputeLong appends a command which will perform a computation on a 32-bit long value. The computation will occur on the data at inputAddress and value, the output of the computuation will be written to the outputAddress.
Parameters:
sequencerNumber Seqencer ID.
commandOperator Command to do of type RSICommandOperator.
inputAddress A host controller memory address.
outputAddress A host controller memory address.
value The trigger value.
Sample Code:
  controller->CommandComputeLong(SEQUENCER, RSICommandOperatorOR, 
      (void*)controllerDigitalOutputAddr, // input to computation
      (void*)controllerDigitalOutputAddr,   // output from computation written here
      BIT_MASK );
See also:
SequencerEnableSet
Examples:
sequencerDigitalOutput.cpp.