Section 9: TSP command reference Series 2600B System SourceMeter® instrument Reference Manual
9-358 2600BS-901-01 Rev. F/August 2021
For information about .condition, .enable, .event, .ntr, and .ptr registers, refer to Status register set
contents (on page 12-1) and Enable and transition registers (on page 12-19). The individual bits of
this register are defined in the following table.
As an example, to set bit B1 of the system summary 5 enable register, set
status.system5.enable = status.system5.NODE57.
In addition to the above constants, enableRegister can be set to the numeric equivalent of the bit
to set. To set more than one bit of the register, set enableRegister to the sum of their decimal
weights. For example, to set bits B1 and B4, set enableRegister to 18 (which is the sum
of 2 + 16).
enableRegister = status.system5.NODE57 + status.system5.NODE60
status.system2.enable = enableRegister
Uses constants to set bits B1 and B4 of the system summary 5 enable register.
-- decimal 18 = binary 0000 0000 0001 0010
enableRegister = 18
status.system5.enable = enableRegister
Uses the decimal value to set bits B1 and B4 of the system summary 5 enable register.