RsCmwLteSig
latest

Contents:

  • Revision History
  • Getting Started
  • Enums
  • RepCaps
  • Examples
  • RsCmwLteSig API Structure
    • A
    • B
    • Call
    • Catalog
    • Clean
    • Configure
      • A
      • B
      • Caggregation
      • Cbs
      • Cell
      • Connection
        • Cdrx
        • Csfb
        • Easy
        • Edau
        • Harq
          • Downlink
            • UdSequence
          • Uplink
        • Nta
        • Pcc
        • Rohc
        • Scc<SecondaryCompCarrier>
        • SipHandling
        • TdBearer
        • UeCategory
        • UePosition
      • CqiReporting
      • Downlink
      • Ebler
      • EeLog
      • Fading
      • IqIn
      • Mmonitor
      • Ncell<CellNo>
      • Pcc
      • RfSettings
      • Scc<SecondaryCompCarrier>
      • Sib<SystemInfoBlock>
      • Sms
      • Throughput
      • UeCapability
      • UeReport
      • Uplink
    • Ebler
    • Intermediate
    • Prepare
    • Pswitched
    • Route
    • Scc<SecondaryCompCarrier>
    • Sense
    • Source
    • Throughput
  • RsCmwLteSig Utilities
  • RsCmwLteSig Logger
  • RsCmwLteSig Events
  • Index
RsCmwLteSig
  • RsCmwLteSig API Structure
  • Configure
  • Connection
  • Harq
  • Downlink
  • Edit on GitLab

Downlink

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:ENABle
CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:NHT
CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:RVCSequence
class DownlinkCls[source]

Downlink commands group definition. 5 total commands, 1 Subgroups, 3 group commands

get_enable() → bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:ENABle
value: bool = driver.configure.connection.harq.downlink.get_enable()

Enables or disables HARQ for downlink transmissions.

return:

enable: OFF | ON

get_nht() → int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:NHT
value: int = driver.configure.connection.harq.downlink.get_nht()

Specifies the maximum number of downlink transmissions, including initial transmissions and retransmissions.

return:

number: numeric Range: 2 to 4

get_rvc_sequence() → RedundancyVerSequence[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:RVCSequence
value: enums.RedundancyVerSequence = driver.configure.connection.harq.downlink.get_rvc_sequence()

Selects the redundancy version sequence for DL HARQ.

return:

sequence: TS1 | TS4 | UDEFined TS1: according to 3GPP TS 36.101 TS4: according to 3GPP TS 36.104 UDEFined: user-defined sequence, see method RsCmwLteSig.Configure.Connection.Harq.Downlink.UdSequence.set

set_enable(enable: bool) → None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:ENABle
driver.configure.connection.harq.downlink.set_enable(enable = False)

Enables or disables HARQ for downlink transmissions.

param enable:

OFF | ON

set_nht(number: int) → None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:NHT
driver.configure.connection.harq.downlink.set_nht(number = 1)

Specifies the maximum number of downlink transmissions, including initial transmissions and retransmissions.

param number:

numeric Range: 2 to 4

set_rvc_sequence(sequence: RedundancyVerSequence) → None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:HARQ:DL:RVCSequence
driver.configure.connection.harq.downlink.set_rvc_sequence(sequence = enums.RedundancyVerSequence.TS1)

Selects the redundancy version sequence for DL HARQ.

param sequence:

TS1 | TS4 | UDEFined TS1: according to 3GPP TS 36.101 TS4: according to 3GPP TS 36.104 UDEFined: user-defined sequence, see method RsCmwLteSig.Configure.Connection.Harq.Downlink.UdSequence.set

Cloning the Group

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

Subgroups

  • UdSequence
Previous Next

© Copyright © Rohde & Schwarz 2023. Revision ddbc9c39.

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