FlPer

SCPI Commands

READ:EVDO:SIGNaling<Instance>:RXQuality:FLPer
FETCh:EVDO:SIGNaling<Instance>:RXQuality:FLPer
CALCulate:EVDO:SIGNaling<Instance>:RXQuality:FLPer
class FlPer[source]

FlPer commands group definition. 5 total commands, 2 Sub-groups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Per: float: Current forward link packet error rate (for the selected carrier) Range: 0 % to 100 %, Unit: %

  • Confidence_Level: float: Confidence level (for the selected carrier) Range: 0 % to 100 %, Unit: %

  • Packet_Errors: float: Number of detected packet errors (for the selected carrier) Range: 0 to 100E+3

  • Test_Packets_Sent: float: Packets sent (on the selected carrier) Range: 0 to 100E+3

  • Total_Per: float: No parameter help available

  • Total_Conf_Level: float: No parameter help available

  • Total_Pack_Errors: float: No parameter help available

  • Total_Test_Psent: float: No parameter help available

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Per: float: Current forward link packet error rate (for the selected carrier) Range: 0 % to 100 %, Unit: %

  • Confidence_Level: float: Confidence level (for the selected carrier) Range: 0 % to 100 %, Unit: %

  • Packet_Errors: int: Number of detected packet errors (for the selected carrier) Range: 0 to 100E+3

  • Test_Packets_Sent: int: Packets sent (on the selected carrier) Range: 0 to 100E+3

  • Total_Per: float: No parameter help available

  • Total_Conf_Level: float: No parameter help available

  • Total_Pack_Errors: int: No parameter help available

  • Total_Test_Psent: int: No parameter help available

calculate()CalculateStruct[source]
# SCPI: CALCulate:EVDO:SIGNaling<instance>:RXQuality:FLPer
value: CalculateStruct = driver.rxQuality.flPer.calculate()

Returns the results of the ‘Forward Link PER’ measurement (for the selected carrier) , see ‘Forward Link Packet Error Rate Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return

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

fetch()ResultData[source]
# SCPI: FETCh:EVDO:SIGNaling<instance>:RXQuality:FLPer
value: ResultData = driver.rxQuality.flPer.fetch()

Returns the results of the ‘Forward Link PER’ measurement (for the selected carrier) , see ‘Forward Link Packet Error Rate Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return

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

read()ResultData[source]
# SCPI: READ:EVDO:SIGNaling<instance>:RXQuality:FLPer
value: ResultData = driver.rxQuality.flPer.read()

Returns the results of the ‘Forward Link PER’ measurement (for the selected carrier) , see ‘Forward Link Packet Error Rate Measurement’. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

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.rxQuality.flPer.clone()

Subgroups