Sacp

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:SACP
class SacpCls[source]

Sacp commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class SacpStruct[source]

Response structure. Fields:

  • Ptx_Limit: float: Power limit for 1 MHz channels fTX± 2 MHz

  • Exc_Ptx_Limit: float: Power limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, …

  • No_Of_Ex_Limit: int: Maximum number of tolerable exceptions, i.e. 1 MHz channels fTX±3 MHz, fTX±4 MHz, … whose power is above ExcPTxLimit, but below PTxLimit.

  • Ptx_Enable: bool: Disables | enables the PTxLimit limit for 1 MHz channels fTX± 2 MHz.

  • No_Of_Exc_Enable: bool: Disables | enables the ExcPTxLimit limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, … with NoOfExLimit tolerable exceptions (per statistic cycle) .

get() SacpStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:SACP
value: SacpStruct = driver.configure.bluetooth.measurement.multiEval.limit.lowEnergy.le1M.sacp.get()

These commands define and enable the Spectrum ACP limits for BR (…:LIMit:SACP) , LE 1M PHY ( …:LE1M…) , LE 2M PHY (. ..:LE2M…) , and LE coded PHY (…:LRANge…) , respectively.

return:

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

set(ptx_limit: float, exc_ptx_limit: float, no_of_ex_limit: int, ptx_enable: bool, no_of_exc_enable: bool) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:SACP
driver.configure.bluetooth.measurement.multiEval.limit.lowEnergy.le1M.sacp.set(ptx_limit = 1.0, exc_ptx_limit = 1.0, no_of_ex_limit = 1, ptx_enable = False, no_of_exc_enable = False)

These commands define and enable the Spectrum ACP limits for BR (…:LIMit:SACP) , LE 1M PHY ( …:LE1M…) , LE 2M PHY (. ..:LE2M…) , and LE coded PHY (…:LRANge…) , respectively.

param ptx_limit:

Power limit for 1 MHz channels fTX± 2 MHz

param exc_ptx_limit:

Power limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, …

param no_of_ex_limit:

Maximum number of tolerable exceptions, i.e. 1 MHz channels fTX±3 MHz, fTX±4 MHz, … whose power is above ExcPTxLimit, but below PTxLimit.

param ptx_enable:

Disables | enables the PTxLimit limit for 1 MHz channels fTX± 2 MHz.

param no_of_exc_enable:

Disables | enables the ExcPTxLimit limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, … with NoOfExLimit tolerable exceptions (per statistic cycle) .