Sacp

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit: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: numeric Power limit for 1 MHz channels fTX± 2 MHz Range: -80 dBm to -10 dBm

  • Exc_Ptx_Limit: float: numeric Power limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, … Range: -80 dBm to -10 dBm

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

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

  • No_Of_Exc_Enable: bool: OFF | ON 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:SACP
value: SacpStruct = driver.configure.multiEval.limit.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:SACP
driver.configure.multiEval.limit.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:

numeric Power limit for 1 MHz channels fTX± 2 MHz Range: -80 dBm to -10 dBm

param exc_ptx_limit:

numeric Power limit for 1 MHz channels fTX±3 MHz, fTX±4 MHz, … Range: -80 dBm to -10 dBm

param no_of_ex_limit:

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

param ptx_enable:

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

param no_of_exc_enable:

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