RxLevel

SCPI Commands

SENSe:GSM:SIGNaling<Instance>:RREPort:RXLevel:RANGe
SENSe:GSM:SIGNaling<Instance>:RREPort:RXLevel
class RxLevel[source]

RxLevel commands group definition. 4 total commands, 1 Sub-groups, 2 group commands

class RangeStruct[source]

Structure for reading output parameters. Fields:

  • Lower: int: Range: -110 dBm to -48 dBm, Unit: dBm

  • Upper: int: Range: -110 dBm to -48 dBm, Unit: dBm

get_range()RangeStruct[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:RREPort:RXLevel:RANGe
value: RangeStruct = driver.sense.rreport.rxLevel.get_range()

Returns the power level range, corresponding to the ‘RX Level Full’ index reported by the MS.

return

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

get_value()int[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:RREPort:RXLevel
value: int = driver.sense.rreport.rxLevel.get_value()

Returns the ‘RX Level Full’ reported by the MS as dimensionless index.

return

rx_level: Range: 0 to 63

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.rreport.rxLevel.clone()

Subgroups