All
SCPI Command :
[CONFigure]:SIGNaling:LTE:CELL:UESCheduling:LAA:RBURst: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
Bt_Ratio: float: Burst transmission probability
Ips_Ratio: float: Initial partial subframes probability
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.
Bl_Count: int: Number of values for BurstLength
Scount: int: Number of values for Symbols
Burst_Length: List[int]: Comma-separated list of all allowed values for the number of subframes in a random burst
Symbols: List[int]: Comma-separated list of all allowed values for the number of allocated OFDM symbols in the last subframe
- 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
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.
Bl_Count: int: Optional setting parameter. Number of values for BurstLength
Scount: int: Optional setting parameter. Number of values for Symbols
Burst_Length: List[int]: Optional setting parameter. Comma-separated list of all allowed values for the number of subframes in a random burst
Symbols: List[int]: Optional setting parameter. Comma-separated list of all allowed values for the number of allocated OFDM symbols in the last subframe
- get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:UESCheduling:LAA:RBURst:ALL value: GetStruct = driver.configure.signaling.lte.cell.ueScheduling.laa.rburst.all.get(cell_name = 'abc')
This command combines the other …:RBURst:… commands to configure random bursts. A query returns: <Periodicity>, <BTRatio>, <IPSRatio>, <CCRNTISend>, <PDCCHFormat>, <BLCount>, <SCount>, <BurstLength>, <Symbols>
- 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:RBURst:ALL structure = driver.configure.signaling.lte.cell.ueScheduling.laa.rburst.all.SetStruct() structure.Cell_Name: str = 'abc' structure.Periodicity: int = 1 structure.Ccrntis_End: enums.CcrntisEnd = enums.CcrntisEnd.ASF structure.Pdcch_Format: enums.PdcchFormatB = enums.PdcchFormatB.N1 structure.Bl_Count: int = 1 structure.Scount: int = 1 structure.Burst_Length: List[int] = [1, 2, 3] structure.Symbols: List[int] = [1, 2, 3] driver.configure.signaling.lte.cell.ueScheduling.laa.rburst.all.set(structure)
This command combines the other …:RBURst:… commands to configure random bursts. A query returns: <Periodicity>, <BTRatio>, <IPSRatio>, <CCRNTISend>, <PDCCHFormat>, <BLCount>, <SCount>, <BurstLength>, <Symbols>
- param structure:
for set value, see the help for SetStruct structure arguments.