UserDefined

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSDPa:UDEFined:ENABle
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSDPa:UDEFined:MODulation
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSDPa:UDEFined:NCODes
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CARRier<Carrier>:HSDPa:UDEFined:TTI
class UserDefined[source]

UserDefined commands group definition. 5 total commands, 1 Sub-groups, 4 group commands

get_enable()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:ENABle
value: bool = driver.configure.cell.carrier.hsdpa.userDefined.get_enable()

Enables or disables the multi-carrier operation for data transport via additional HS-DSCH.

return

enable: OFF | ON

Global Repeated Capabilities: repcap.Carrier

get_modulation()RsCmwWcdmaSig.enums.HsdpaModulation[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:MODulation
value: enums.HsdpaModulation = driver.configure.cell.carrier.hsdpa.userDefined.get_modulation()

Selects the modulation scheme to be used.

return

modulation: QPSK | Q16 | Q64 QPSK, 16-QAM, 64-QAM

Global Repeated Capabilities: repcap.Carrier

get_ncodes()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:NCODes
value: int = driver.configure.cell.carrier.hsdpa.userDefined.get_ncodes()

Specifies the number of HS-PDSCH channelization codes to be assigned to the UE.

return

number: Range: 1 to 15

Global Repeated Capabilities: repcap.Carrier

get_tti()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:TTI
value: int = driver.configure.cell.carrier.hsdpa.userDefined.get_tti()

Specifies the minimum distance between two consecutive transmission time intervals in which the HS-DSCH is allocated to the UE.

return

tti: Range: 1 to 3

Global Repeated Capabilities: repcap.Carrier

set_enable(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:ENABle
driver.configure.cell.carrier.hsdpa.userDefined.set_enable(enable = False)

Enables or disables the multi-carrier operation for data transport via additional HS-DSCH.

param enable

OFF | ON

Global Repeated Capabilities: repcap.Carrier

set_modulation(modulation: RsCmwWcdmaSig.enums.HsdpaModulation)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:MODulation
driver.configure.cell.carrier.hsdpa.userDefined.set_modulation(modulation = enums.HsdpaModulation.Q16)

Selects the modulation scheme to be used.

param modulation

QPSK | Q16 | Q64 QPSK, 16-QAM, 64-QAM

Global Repeated Capabilities: repcap.Carrier

set_ncodes(number: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:NCODes
driver.configure.cell.carrier.hsdpa.userDefined.set_ncodes(number = 1)

Specifies the number of HS-PDSCH channelization codes to be assigned to the UE.

param number

Range: 1 to 15

Global Repeated Capabilities: repcap.Carrier

set_tti(tti: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CARRier<carrier>:HSDPa:UDEFined:TTI
driver.configure.cell.carrier.hsdpa.userDefined.set_tti(tti = 1)

Specifies the minimum distance between two consecutive transmission time intervals in which the HS-DSCH is allocated to the UE.

param tti

Range: 1 to 3

Global Repeated Capabilities: repcap.Carrier

Cloning the Group

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

Subgroups