Pattern

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSUPa:ERGCh:PATTern:LENGth
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSUPa:ERGCh:PATTern
class Pattern[source]

Pattern commands group definition. 3 total commands, 1 Sub-groups, 2 group commands

get_length()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSUPa:ERGCh:PATTern:LENGth
value: int = driver.configure.cell.carrier.hsupa.ergch.pattern.get_length()

Specifies the length of the user-defined relative grant pattern.

return

length: Range: 1 to 8 (for 10 ms TTI: 1 to 4)

Global Repeated Capabilities: repcap.Carrier

get_value()str[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSUPa:ERGCh:PATTern
value: str = driver.configure.cell.carrier.hsupa.ergch.pattern.get_value()

Specifies the bits of the user-defined relative grant pattern. Bits exceeding the configured pattern length are ignored, see method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsupa.Ergch.Pattern.length.

return

pattern: String containing exactly 8 bits 0 = DOWN, 1 = UP, - = DTX

Global Repeated Capabilities: repcap.Carrier

set_length(length: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSUPa:ERGCh:PATTern:LENGth
driver.configure.cell.carrier.hsupa.ergch.pattern.set_length(length = 1)

Specifies the length of the user-defined relative grant pattern.

param length

Range: 1 to 8 (for 10 ms TTI: 1 to 4)

Global Repeated Capabilities: repcap.Carrier

set_value(pattern: str)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSUPa:ERGCh:PATTern
driver.configure.cell.carrier.hsupa.ergch.pattern.set_value(pattern = '1')

Specifies the bits of the user-defined relative grant pattern. Bits exceeding the configured pattern length are ignored, see method RsCmwWcdmaSig.Configure.Cell.Carrier.Hsupa.Ergch.Pattern.length.

param pattern

String containing exactly 8 bits 0 = DOWN, 1 = UP, - = DTX

Global Repeated Capabilities: repcap.Carrier

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.cell.carrier.hsupa.ergch.pattern.clone()

Subgroups