Downlink
SCPI Command :
ADD:SIGNaling:LTE:CELL:HARQ:DL:RETX
- class DownlinkCls[source]
Downlink commands group definition. 2 total commands, 1 Subgroups, 1 group commands
- class ReTxStruct[source]
Structure for setting input parameters. Contains optional set arguments. Fields:
Cell_Name: str: No parameter help available
Count: int: Optional setting parameter. Number of entries to be added.
Riv: List[enums.Riv]: Optional setting parameter. RIV non-adaptive, new TX RIV
Tb_1: List[int]: Optional setting parameter. MCS value for first transport block
Tb_2: List[int]: Optional setting parameter. MCS value for second transport block
Behavior: List[enums.ReTxBehavior]: Optional setting parameter. Behavior for transport block size changes. Not applicable, flush HARQ buffer, retain HARQ buffer.
- set_re_tx(value: ReTxStruct) None[source]
# SCPI: ADD:SIGNaling:LTE:CELL:HARQ:DL:RETX structure = driver.add.signaling.lte.cell.harq.downlink.ReTxStruct() structure.Cell_Name: str = 'abc' structure.Count: int = 1 structure.Riv: List[enums.Riv] = [Riv.NADaptive, Riv.NEW] structure.Tb_1: List[int] = [1, 2, 3] structure.Tb_2: List[int] = [1, 2, 3] structure.Behavior: List[enums.ReTxBehavior] = [ReTxBehavior.FLUSh, ReTxBehavior.RETain] driver.add.signaling.lte.cell.harq.downlink.set_re_tx(value = structure)
Adds entries to the end of the retransmission configuration.
- param value:
see the help for ReTxStruct structure arguments.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.add.signaling.lte.cell.harq.downlink.clone()
Subgroups