ReTx

SCPI Command :

[CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RETX
class ReTxCls[source]

ReTx commands group definition. 3 total commands, 2 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Index: List[int]: Index of the entry to be configured (lowest index is 0) .

  • Riv: List[enums.Riv]: RIV non-adaptive, new TX RIV

  • Tb_1: List[int]: MCS value for first transport block

  • Tb_2: List[int]: MCS value for second transport block

  • Behavior: List[enums.ReTxBehavior]: Behavior for transport block size changes. Not applicable, flush HARQ buffer, retain HARQ buffer.

class SetStruct[source]

Structure for setting input parameters. Fields:

  • Cell_Name: str: No parameter help available

  • Index: List[int]: Index of the entry to be configured (lowest index is 0) .

  • Riv: List[enums.Riv]: RIV non-adaptive, new TX RIV

  • Tb_1: List[int]: MCS value for first transport block

  • Tb_2: List[int]: MCS value for second transport block

  • Behavior: List[enums.ReTxBehavior]: Behavior for transport block size changes. Not applicable, flush HARQ buffer, retain HARQ buffer.

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RETX
value: GetStruct = driver.configure.signaling.lte.cell.harq.downlink.reTx.get(cell_name = 'abc')

Configures existing entries of the retransmission configuration.

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:HARQ:DL:RETX
structure = driver.configure.signaling.lte.cell.harq.downlink.reTx.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Index: List[int] = [1, 2, 3]
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.configure.signaling.lte.cell.harq.downlink.reTx.set(structure)

Configures existing entries of the retransmission configuration.

param structure:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.signaling.lte.cell.harq.downlink.reTx.clone()

Subgroups