Carrier

SCPI Commands

FETCh:WCDMa:SIGNaling<Instance>:HCQI:CARRier<Carrier>
READ:WCDMa:SIGNaling<Instance>:HCQI:CARRier<Carrier>
class Carrier[source]

Carrier commands group definition. 8 total commands, 3 Sub-groups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Median_Cqi: int: Middle of the CQI distribution reported in the first measurement stage Range: 0 to 30

  • Meas_Sub_Frames: int: Total number of measured HSDPA subframes in stage one Range: 0 to 1E+6

  • Cqiin_Range: float: Percentage of the CQI values reported within the interval [median CQI - 2, median CQI + 2] Range: 0 % to 100 %, Unit: %

fetch()ResultData[source]
# SCPI: FETCh:WCDMa:SIGNaling<instance>:HCQI:CARRier<carrier>
value: ResultData = driver.hcqi.carrier.fetch()

Returns the results of the first stage of HSDPA CQI measurement per carrier.

Global Repeated Capabilities: repcap.Carrier
return

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

read()ResultData[source]
# SCPI: READ:WCDMa:SIGNaling<instance>:HCQI:CARRier<carrier>
value: ResultData = driver.hcqi.carrier.read()

Returns the results of the first stage of HSDPA CQI measurement per carrier.

Global Repeated Capabilities: repcap.Carrier
return

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.hcqi.carrier.clone()

Subgroups