332 34980A User’s Guide
13 Breadboard Module
Example: If the Breadboard Module is in slot 3, and channel 002 has been
configured as a byte output, the following command writes a 1 to bit 6 of
channel 002:
SOURce:DIGital:DATA:BIT 6,1 (@3002)
To output a digital byte, the specified value may be binary (valid values
from #B00000000 through #B11111111), hexadecimal (valid values from
#H0 through #HFF) or integer (valid values 0 through 255) and the
syntax is:
SOURce:DIGital:DATA:BYTE <data>, (@<ch_list>)
Example: If the Breadboard Module is in slot 6, and channel 002 has been
configured as a byte output, any of the following commands will write the
value 10011101 to channel 002:
SOURce:DIGital:DATA:BYTE #B10011101,(@6002)
SOURce:DIGital:DATA:BYTE #H9D,(@6002)
SOURce:DIGital:DATA:BYTE 157,(@6002)
To output a digital word, the specified value may be binary (valid values
from #B0000000000000000 through #B1111111111111111), hexadecimal
(valid values from #H0 through #HFFFF) or integer (valid values 0
through 65535) and the syntax is:
SOURce:DIGital:DATA:WORD <data>, (@<ch_list>)
Example: If the Breadboard Module is in slot 8, and channels 001 and 002
have been configured as a word output, any of the following commands
will write the value 1001100110011001 to the combined digital channel:
SOURce:DIGital:DATA:WORD #B1001100110011001,(@8001)
SOURce:DIGital:DATA:WORD #H9999,(@8001)
SOURce:DIGital:DATA:WORD 39321,(@8001)