IlpControl

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:TPC:ILPControl:MLENgth
CONFigure:WCDMa:MEASurement<Instance>:TPC:ILPControl:TSEF
CONFigure:WCDMa:MEASurement<Instance>:TPC:ILPControl:TSGH
CONFigure:WCDMa:MEASurement<Instance>:TPC:ILPControl:TSSegment
CONFigure:WCDMa:MEASurement<Instance>:TPC:ILPControl:AEXecution
class IlpControl[source]

IlpControl commands group definition. 5 total commands, 0 Sub-groups, 5 group commands

class TsefStruct[source]

Structure for reading output parameters. Fields:

  • Length: int: numeric Number of TPC bits per test step Range: 100 to 170

  • Statistics: int: numeric Number of slots at the end of test step E (F) , where the minimum (maximum) output power results are measured. Range: 1 slot to 20 slots, Unit: slots

class TsghStruct[source]

Structure for reading output parameters. Fields:

  • Length: int: numeric Number of TPC bits per test step Range: 60 to 170

  • Statistics: int: numeric Number of slots at the end of test step G (H) , where the minimum (maximum) output power results are measured. Range: 1 slot to 20 slots, Unit: slots

get_aexecution()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:AEXecution
value: bool = driver.configure.tpc.ilpControl.get_aexecution()

Enables or disables automatic execution of the TPC setup for combined signal path measurements in ‘Inner Loop Power Control’ mode.

return

enable: OFF | ON

get_mlength()int[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:MLENgth
value: int = driver.configure.tpc.ilpControl.get_mlength()

Query the number of slots measured in ‘Inner Loop Power Control’ mode. The value depends on the selected TPC setup and the test step settings. It can only be determined while the ‘Inner Loop Power Control’ mode is active. In other modes INV is returned.

return

meas_length: decimal Range: 101 slots to 341 slots, Unit: slots

get_ts_segment()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSSegment
value: bool = driver.configure.tpc.ilpControl.get_ts_segment()

Enables or disables segmentation for test steps E, F, G and H. For the combined signal path scenario, use CONFigure:WCDMa:SIGN<i>:UL:TPCSet:PCONfig:TSSegment.

return

enable: OFF | ON

get_tsef()TsefStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSEF
value: TsefStruct = driver.configure.tpc.ilpControl.get_tsef()

Configures the inner loop power control test steps E and F. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:UL:TPCSet:PCONfig:TSEF.

return

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

get_tsgh()TsghStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSGH
value: TsghStruct = driver.configure.tpc.ilpControl.get_tsgh()

Configures the inner loop power control test steps G and H. For the combined signal path scenario, usemethod RsCmwWcdmaMeas.Configure.Tpc.IlpControl.tsgh.

return

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

set_aexecution(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:AEXecution
driver.configure.tpc.ilpControl.set_aexecution(enable = False)

Enables or disables automatic execution of the TPC setup for combined signal path measurements in ‘Inner Loop Power Control’ mode.

param enable

OFF | ON

set_ts_segment(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSSegment
driver.configure.tpc.ilpControl.set_ts_segment(enable = False)

Enables or disables segmentation for test steps E, F, G and H. For the combined signal path scenario, use CONFigure:WCDMa:SIGN<i>:UL:TPCSet:PCONfig:TSSegment.

param enable

OFF | ON

set_tsef(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.IlpControl.IlpControl.TsefStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSEF
driver.configure.tpc.ilpControl.set_tsef(value = TsefStruct())

Configures the inner loop power control test steps E and F. For the combined signal path scenario, useCONFigure:WCDMa:SIGN<i>:UL:TPCSet:PCONfig:TSEF.

param value

see the help for TsefStruct structure arguments.

set_tsgh(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.IlpControl.IlpControl.TsghStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:ILPControl:TSGH
driver.configure.tpc.ilpControl.set_tsgh(value = TsghStruct())

Configures the inner loop power control test steps G and H. For the combined signal path scenario, usemethod RsCmwWcdmaMeas.Configure.Tpc.IlpControl.tsgh.

param value

see the help for TsghStruct structure arguments.