Pattern

SCPI Command :

[SOURce<HW>]:BB:TDSCdma:UP:CELL<ST>:SLOT<CH0>:CHANnel<US0>:DATA:PATTern
class PatternCls[source]

Pattern commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class PatternStruct[source]

Response structure. Fields:

  • Pattern: List[str]: numeric

  • Bitcount: int: integer Range: 1 to 64

get(cell=Cell.Default, slotNull=SlotNull.Default, channelNull=ChannelNull.Default) PatternStruct[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:UP:CELL<ST>:SLOT<CH0>:CHANnel<US0>:DATA:PATTern
value: PatternStruct = driver.source.bb.tdscdma.up.cell.slot.channel.data.pattern.get(cell = repcap.Cell.Default, slotNull = repcap.SlotNull.Default, channelNull = repcap.ChannelNull.Default)

Determines the bit pattern. The first parameter determines the bit pattern (choice of hexadecimal, octal, or binary notation) , the second specifies the number of bits to use.

param cell

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cell’)

param slotNull

optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Slot’)

param channelNull

optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Channel’)

return

structure: for return value, see the help for PatternStruct structure arguments.

set(pattern: List[str], bitcount: int, cell=Cell.Default, slotNull=SlotNull.Default, channelNull=ChannelNull.Default) None[source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:UP:CELL<ST>:SLOT<CH0>:CHANnel<US0>:DATA:PATTern
driver.source.bb.tdscdma.up.cell.slot.channel.data.pattern.set(pattern = ['rawAbc1', 'rawAbc2', 'rawAbc3'], bitcount = 1, cell = repcap.Cell.Default, slotNull = repcap.SlotNull.Default, channelNull = repcap.ChannelNull.Default)

Determines the bit pattern. The first parameter determines the bit pattern (choice of hexadecimal, octal, or binary notation) , the second specifies the number of bits to use.

param pattern

numeric

param bitcount

integer Range: 1 to 64

param cell

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cell’)

param slotNull

optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Slot’)

param channelNull

optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Channel’)