All

SCPI Command :

[CONFigure]:SIGNaling:LTE:CELL:UESCheduling:LAA:FBURst:ALL
class AllCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Periodicity: int: No parameter help available

  • Burst_Length: int: No parameter help available

  • First_Subframe: int: No parameter help available

  • Initial_Sf_Alloc: enums.InitialSfAlloc: Initial subframe with full allocation (S0) or second slot only (S7)

  • Ofdm_Symbols: enums.OfdmSymbols: OFDM symbols in last subframe of burst

  • Ccrntis_End: enums.CcrntisEnd: Send CC-RNTI: F2SF: final 2 SF LSF: last SF BLSF: before last SF SASF: skip all SF ASF: all SF

  • Pdcch_Format: enums.PdcchFormatB: Number of CCE for PDCCH scrambled with CC-RNTI.

class SetStruct[source]

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

  • Cell_Name: str: No parameter help available

  • Periodicity: int: No parameter help available

  • Burst_Length: int: No parameter help available

  • First_Subframe: int: No parameter help available

  • Initial_Sf_Alloc: enums.InitialSfAlloc: Optional setting parameter. Initial subframe with full allocation (S0) or second slot only (S7)

  • Ofdm_Symbols: enums.OfdmSymbols: Optional setting parameter. OFDM symbols in last subframe of burst

  • Ccrntis_End: enums.CcrntisEnd: Optional setting parameter. Send CC-RNTI: F2SF: final 2 SF LSF: last SF BLSF: before last SF SASF: skip all SF ASF: all SF

  • Pdcch_Format: enums.PdcchFormatB: Optional setting parameter. Number of CCE for PDCCH scrambled with CC-RNTI.

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:UESCheduling:LAA:FBURst:ALL
value: GetStruct = driver.configure.signaling.lte.cell.ueScheduling.laa.fburst.all.get(cell_name = 'abc')

Configures fixed bursts (combination of the other …:FBURst:… commands) .

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:LAA:FBURst:ALL
structure = driver.configure.signaling.lte.cell.ueScheduling.laa.fburst.all.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Periodicity: int = 1
structure.Burst_Length: int = 1
structure.First_Subframe: int = 1
structure.Initial_Sf_Alloc: enums.InitialSfAlloc = enums.InitialSfAlloc.S0
structure.Ofdm_Symbols: enums.OfdmSymbols = enums.OfdmSymbols.ALL
structure.Ccrntis_End: enums.CcrntisEnd = enums.CcrntisEnd.ASF
structure.Pdcch_Format: enums.PdcchFormatB = enums.PdcchFormatB.N1
driver.configure.signaling.lte.cell.ueScheduling.laa.fburst.all.set(structure)

Configures fixed bursts (combination of the other …:FBURst:… commands) .

param structure:

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