Minimum

SCPI Commands :

READ:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
FETCh:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
CALCulate:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
class MinimumCls[source]

Minimum commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Mod_Type: enums.ResultStatus2: DBPSk1 | DQPSk2 | CCK5 | CCK11 DBPSk1: 1 Mbps DBPSK DQPSk2: 2 Mbps DQPSK CCK5: 5.5 Mbps CCK CCK11: 11 Mbps CCK

  • Plcp_Type: enums.ResultStatus2: SHORtplcp | LONGplcp Short or long PLCP

  • Payload_Length: enums.ResultStatus2: decimal Range: 1 byte to 4095 bytes, Unit: byte

  • Burst_Power: enums.ResultStatus2: float Range: -100 dBm to 30 dBm, Unit: dBm

  • Evm_Peak: enums.ResultStatus2: float Error vector magnitude peak value Range: 0 % to 100 %, Unit: %

  • Evm: enums.ResultStatus2: float Error vector magnitude RMS value Range: 0 % to 100 %, Unit: %

  • Freq_Error: enums.ResultStatus2: float Center frequency error Range: -150 MHz to 150 MHz Hz

  • Clock_Error: enums.ResultStatus2: float Chip clock error Range: -125 ppm to 125 ppm, Unit: ppm

  • Iq_Offset: enums.ResultStatus2: float Range: -100 dB to 0 dB, Unit: dB

  • Gain_Imbalance: enums.ResultStatus2: float Gain imbalance Range: -100 dB to 100 dB, Unit: dB

  • Quad_Error: enums.ResultStatus2: float Quadrature error Range: -180 deg to 180 deg, Unit: deg

  • Out_Of_Tol: enums.ResultStatus2: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits. Range: 0 % to 100 % , Unit: %

  • Burst_Rate: enums.ResultStatus2: float If a modulation filter is used, the burst rate indicates the share of bursts of the selected modulation type in the bursts received. Otherwise, it returns 1. See [CMDLINKRESOLVED Configure.Isignal#Modfilter CMDLINKRESOLVED]. Unit: %

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Mod_Type: enums.ModulationTypeC: DBPSk1 | DQPSk2 | CCK5 | CCK11 DBPSk1: 1 Mbps DBPSK DQPSk2: 2 Mbps DQPSK CCK5: 5.5 Mbps CCK CCK11: 11 Mbps CCK

  • Plcp_Type: enums.PlcpType: SHORtplcp | LONGplcp Short or long PLCP

  • Payload_Length: int: decimal Range: 1 byte to 4095 bytes, Unit: byte

  • Burst_Power: float: float Range: -100 dBm to 30 dBm, Unit: dBm

  • Evm_Peak: float: float Error vector magnitude peak value Range: 0 % to 100 %, Unit: %

  • Evm: float: float Error vector magnitude RMS value Range: 0 % to 100 %, Unit: %

  • Freq_Error: float: float Center frequency error Range: -150 MHz to 150 MHz Hz

  • Clock_Error: float: float Chip clock error Range: -125 ppm to 125 ppm, Unit: ppm

  • Iq_Offset: float: float Range: -100 dB to 0 dB, Unit: dB

  • Gain_Imbalance: float: float Gain imbalance Range: -100 dB to 100 dB, Unit: dB

  • Quad_Error: float: float Quadrature error Range: -180 deg to 180 deg, Unit: deg

  • Out_Of_Tol: float: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for modulation measurements exceeding the specified modulation limits. Range: 0 % to 100 % , Unit: %

  • Burst_Rate: float: float If a modulation filter is used, the burst rate indicates the share of bursts of the selected modulation type in the bursts received. Otherwise, it returns 1. See [CMDLINKRESOLVED Configure.Isignal#Modfilter CMDLINKRESOLVED]. Unit: %

calculate() CalculateStruct[source]
# SCPI: CALCulate:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
value: CalculateStruct = driver.multiEval.modulation.dsss.minimum.calculate()

Return the current, average, minimum, maximum and standard deviation single value results for DSSS signals. 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:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
value: ResultData = driver.multiEval.modulation.dsss.minimum.fetch()

Return the current, average, minimum, maximum and standard deviation single value results for DSSS signals. 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:WLAN:MEASurement<Instance>:MEValuation:MODulation:DSSS:MINimum
value: ResultData = driver.multiEval.modulation.dsss.minimum.read()

Return the current, average, minimum, maximum and standard deviation single value results for DSSS signals. 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.