Pattern

SCPI Command :

[SOURce<HW>]:BB:EVDO:USER<ST>:DATA:PATTern
class PatternCls[source]

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

class PatternStruct[source]

Response structure. Fields:

  • Pattern: str: numeric

  • Bitcount: int: integer Range: 32 to 32

get(userIx=UserIx.Default) PatternStruct[source]
# SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DATA:PATTern
value: PatternStruct = driver.source.bb.evdo.user.data.pattern.get(userIx = repcap.UserIx.Default)

Sets the data pattern for the data portion of the packets sent to the user. The most significant bit (MSB) of this value is the MSB of the packet and the word is repeated to fill all space within the packet.

param userIx

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

return

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

set(pattern: str, bitcount: int, userIx=UserIx.Default) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DATA:PATTern
driver.source.bb.evdo.user.data.pattern.set(pattern = rawAbc, bitcount = 1, userIx = repcap.UserIx.Default)

Sets the data pattern for the data portion of the packets sent to the user. The most significant bit (MSB) of this value is the MSB of the packet and the word is repeated to fill all space within the packet.

param pattern

numeric

param bitcount

integer Range: 32 to 32

param userIx

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