Hsdpa

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:ANRFactor
CONFigure:WCDMa:SIGNaling<Instance>:CELL:HSDPa:TYPE
class Hsdpa[source]

Hsdpa commands group definition. 23 total commands, 4 Sub-groups, 2 group commands

get_anr_factor()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:ANRFactor
value: int = driver.configure.cell.hsdpa.get_anr_factor()

Specifies the number of transmissions of the same ACK/NACK (ACK/NACK repetition factor) .

return

factor: Range: 1 to 4

get_type_py()RsCmwWcdmaSig.enums.ChannelType[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:TYPE
value: enums.ChannelType = driver.configure.cell.hsdpa.get_type_py()

Selects the configuration type of the high-speed downlink shared channel (HS-DSCH) .

return

channel_type: FIXed | CQI | UDEFined FIXed: fixed reference channel CQI: channel for CQI reporting tests UDEFined: user-defined channel configuration

set_anr_factor(factor: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:ANRFactor
driver.configure.cell.hsdpa.set_anr_factor(factor = 1)

Specifies the number of transmissions of the same ACK/NACK (ACK/NACK repetition factor) .

param factor

Range: 1 to 4

set_type_py(channel_type: RsCmwWcdmaSig.enums.ChannelType)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:HSDPa:TYPE
driver.configure.cell.hsdpa.set_type_py(channel_type = enums.ChannelType.CQI)

Selects the configuration type of the high-speed downlink shared channel (HS-DSCH) .

param channel_type

FIXed | CQI | UDEFined FIXed: fixed reference channel CQI: channel for CQI reporting tests UDEFined: user-defined channel configuration

Cloning the Group

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

Subgroups