Udtx

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:CPC:UDTX:ENABle
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CPC:UDTX:LPLength
CONFigure:WCDMa:SIGNaling<Instance>:CELL:CPC:UDTX:CQITimer
class Udtx[source]

Udtx commands group definition. 7 total commands, 1 Sub-groups, 3 group commands

get_cqi_timer()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:CQITimer
value: int or bool = driver.configure.cell.cpc.udtx.get_cqi_timer()

Number of subframes after an HS-DSCH reception during which the CQI reports have higher priority than the DTX pattern and are transmitted according to the regular CQI pattern, see ‘Continuous Packet Connectivity (CPC) ‘.

return

timer: 0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | ON | OFF If you enter another value, the nearest allowed value is set instead. Range: 0 Subframe to 512 Subframe, Unit: subframe Additional OFF | ON disables | enables the CQI DTX timer

get_enable()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:ENABle
value: bool = driver.configure.cell.cpc.udtx.get_enable()

Defines the settings for the discontinuous transmission in the uplink, see ‘Continuous Packet Connectivity (CPC) ‘.

return

enable: OFF | ON enables/disables UL DTX

get_lp_length()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:LPLength
value: int = driver.configure.cell.cpc.udtx.get_lp_length()

Defines the long preamble length that the UE uses during UL DTX cycle 2 to aid synchronization, see ‘Continuous Packet Connectivity (CPC) ‘.

return

length: Only the following values are allowed (in slots) : 2 | 4 | 15 If you enter another value, the nearest allowed value is set instead. Range: 2 slots to 15 slots, Unit: slot

set_cqi_timer(timer: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:CQITimer
driver.configure.cell.cpc.udtx.set_cqi_timer(timer = 1)

Number of subframes after an HS-DSCH reception during which the CQI reports have higher priority than the DTX pattern and are transmitted according to the regular CQI pattern, see ‘Continuous Packet Connectivity (CPC) ‘.

param timer

0 | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | ON | OFF If you enter another value, the nearest allowed value is set instead. Range: 0 Subframe to 512 Subframe, Unit: subframe Additional OFF | ON disables | enables the CQI DTX timer

set_enable(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:ENABle
driver.configure.cell.cpc.udtx.set_enable(enable = False)

Defines the settings for the discontinuous transmission in the uplink, see ‘Continuous Packet Connectivity (CPC) ‘.

param enable

OFF | ON enables/disables UL DTX

set_lp_length(length: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:CPC:UDTX:LPLength
driver.configure.cell.cpc.udtx.set_lp_length(length = 1)

Defines the long preamble length that the UE uses during UL DTX cycle 2 to aid synchronization, see ‘Continuous Packet Connectivity (CPC) ‘.

param length

Only the following values are allowed (in slots) : 2 | 4 | 15 If you enter another value, the nearest allowed value is set instead. Range: 2 slots to 15 slots, Unit: slot

Cloning the Group

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

Subgroups