Hsdpa

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CONNection:PACKet:HSDPa:RWINdow
CONFigure:WCDMa:SIGNaling<Instance>:CONNection:PACKet:HSDPa:TIMer
class Hsdpa[source]

Hsdpa commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class RwindowStruct[source]

Structure for reading output parameters. Fields:

  • Mode: enums.AutoManualMode: AUTO | MANual Automatic calculation | manual configuration of the window size

  • Receiving_Window: int: Manually configured window size applicable to Mode = MANual The value is rounded to the nearest of the following values: 1 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 768 | 1024 | 1536 | 2047 | 2560 | 3072 | 3584 | 4095 Range: 1 to 4095

class TimerStruct[source]

Structure for reading output parameters. Fields:

  • Mode: enums.AutoManualMode: AUTO | MANual Automatic calculation | manual configuration of the timeout value

  • T_1_Release_Timer: float: Manually configured value applicable to Mode = MANual The value is rounded to the nearest of the following values in s: 0.01 | 0.02 | 0.03 … 0.1 | 0.12 | 0.14 | 0.16 | 0.2 | 0.3 | 0.4 Range: 0.01 s to 0.4 s, Unit: s

get_rwindow()RwindowStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:HSDPa:RWINdow
value: RwindowStruct = driver.configure.connection.packet.hsdpa.get_rwindow()

Specifies the size of the receiver window in the UE.

return

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

get_timer()TimerStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:HSDPa:TIMer
value: TimerStruct = driver.configure.connection.packet.hsdpa.get_timer()

Specifies the timeout value of the reordering release timer T1.

return

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

set_rwindow(value: RsCmwWcdmaSig.Implementations.Configure_.Connection_.Packet_.Hsdpa.Hsdpa.RwindowStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:HSDPa:RWINdow
driver.configure.connection.packet.hsdpa.set_rwindow(value = RwindowStruct())

Specifies the size of the receiver window in the UE.

param value

see the help for RwindowStruct structure arguments.

set_timer(value: RsCmwWcdmaSig.Implementations.Configure_.Connection_.Packet_.Hsdpa.Hsdpa.TimerStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CONNection:PACKet:HSDPa:TIMer
driver.configure.connection.packet.hsdpa.set_timer(value = TimerStruct())

Specifies the timeout value of the reordering release timer T1.

param value

see the help for TimerStruct structure arguments.