All

SCPI Command :

[CONFigure]:SIGNaling:LTE:CELL:UESCheduling:SPS:SASSignment:UL:ALL
class AllCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Sf_Interval: int: Subframe periodicity

  • Number_Rb: int: No parameter help available

  • Start_Rb: int: No parameter help available

  • Mcs: int: No parameter help available

  • Tbs_Bits: int: No parameter help available

  • Ira: enums.Ira: Empty transmissions before implicit release of the UL grant

  • Tic_Enable: bool: ‘twoIntervalsConfig’

  • Rv_Enable: bool: ‘fixedRV-NonAdaptive’

class SetStruct[source]

Structure for setting input parameters. Contains optional setting parameters. Fields:

  • Cell_Name: str: No parameter help available

  • Sf_Interval: int: Optional setting parameter. Subframe periodicity

  • Number_Rb: int: No parameter help available

  • Start_Rb: int: No parameter help available

  • Mcs: int: No parameter help available

  • Ira: enums.Ira: Optional setting parameter. Empty transmissions before implicit release of the UL grant

  • Tic_Enable: bool: Optional setting parameter. ‘twoIntervalsConfig’

  • Rv_Enable: bool: Optional setting parameter. ‘fixedRV-NonAdaptive’

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:UESCheduling:SPS:SASSignment:UL:ALL
value: GetStruct = driver.configure.signaling.lte.cell.ueScheduling.sps.sassignment.uplink.all.get(cell_name = 'abc')

Configures all settings for SPS UL scheduling. A query returns the sequence <SFInterval>, <NumberRB>, <StartRB>, <MCS>, <TBSBits>, <IRA>, <TicEnable>, <RvEnable>.

param cell_name:

No help available

return:

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

set(structure: SetStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:UESCheduling:SPS:SASSignment:UL:ALL
structure = driver.configure.signaling.lte.cell.ueScheduling.sps.sassignment.uplink.all.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Sf_Interval: int = 1
structure.Number_Rb: int = 1
structure.Start_Rb: int = 1
structure.Mcs: int = 1
structure.Ira: enums.Ira = enums.Ira.E2
structure.Tic_Enable: bool = False
structure.Rv_Enable: bool = False
driver.configure.signaling.lte.cell.ueScheduling.sps.sassignment.uplink.all.set(structure)

Configures all settings for SPS UL scheduling. A query returns the sequence <SFInterval>, <NumberRB>, <StartRB>, <MCS>, <TBSBits>, <IRA>, <TicEnable>, <RvEnable>.

param structure:

for set value, see the help for SetStruct structure arguments.