RsCMX_Signaling
latest

Contents:

  • Revision History
  • Getting Started
  • Enums
  • RepCaps
  • Examples
  • RsCMX_Signaling API Structure
    • Add
      • Signaling
        • Eps
        • Fgs
        • Lte
          • Ca
          • Cell
            • Harq
              • Downlink
          • Ncell
        • Nradio
        • Topology
    • Catalog
    • Configure
    • Create
    • Diagnostic
    • Init
    • Procedure
    • Remove
    • Restart
    • Sense
    • Signaling
    • Source
    • System
    • Test
  • RsCMX_Signaling Utilities
  • RsCMX_Signaling Logger
  • RsCMX_Signaling Events
  • Index
RsCMX_Signaling
  • RsCMX_Signaling API Structure
  • Add
  • Signaling
  • Lte
  • Cell
  • Harq
  • Downlink
  • Edit on GitLab

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

  • RvSequence
Previous Next

© Copyright © Rohde & Schwarz 2023. Revision ff85db99.

Built with Sphinx using a theme provided by Read the Docs.