Specifications
5-7
System Command Reference Section
Pattern Configuration
Example 1 - Use of the :DATA command
Set user-defined pattern store 5 to a length of 9 bits. Let the new data bits be 1, 0, 0, 1, 1,
0. 1, 1, 1 (binary). Then query the contents of this pattern store.
Method 1: using data packed 1 bit per byte.
PATT:FORM PACK,1
PATT:UPAT5 9
PATT:UPATS:DATA #19<data>
where
0 = the start of the header
1 = the number of decimal digits to follow forming the
length
9 = the length of the data block that follows
<data> = 9 data bytes containing binary 00000001
00000000
00000000
00000001
00000001
00000000
00000001
00000001
00000001
PATT:UPAT5:DATA?
would return #19<data>
where
# = the start of the header
1 = the number of decimal digits to follow forming the
length
9 = the length of the data block that follows
<data> = 9 data bytes containing binary 00000001
00000000
00000000
00000001
00000001
00000000
00000001
00000001
00000001