Pattern

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>:ULDL:PATTern
class PatternCls[source]

Pattern commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Dl_Slots: int: Specifies ‘nrofDownlinkSlots’.

  • Dl_Symbols: int: Specifies ‘nrofDownlinkSymbols’.

  • Ul_Slots: int: Specifies ‘nrofUplinkSlots’.

  • Ul_Symbols: int: Specifies ‘nrofUplinkSymbols’.

get(sc_spacing: SubCarrSpacing) GetStruct[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:ULDL:PATTern
value: GetStruct = driver.configure.nrSubMeas.ulDl.pattern.get(sc_spacing = enums.SubCarrSpacing.S15K)

Configures the TDD UL-DL pattern for the <SCSpacing>. The ranges have dependencies, see ‘TDD UL-DL configuration’.

param sc_spacing:

Subcarrier spacing for which the other settings apply.

return:

structure: for return value, see the help for GetStruct structure arguments.

set(sc_spacing: SubCarrSpacing, dl_slots: int, dl_symbols: int, ul_slots: int, ul_symbols: int) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:ULDL:PATTern
driver.configure.nrSubMeas.ulDl.pattern.set(sc_spacing = enums.SubCarrSpacing.S15K, dl_slots = 1, dl_symbols = 1, ul_slots = 1, ul_symbols = 1)

Configures the TDD UL-DL pattern for the <SCSpacing>. The ranges have dependencies, see ‘TDD UL-DL configuration’.

param sc_spacing:

Subcarrier spacing for which the other settings apply.

param dl_slots:

Specifies ‘nrofDownlinkSlots’.

param dl_symbols:

Specifies ‘nrofDownlinkSymbols’.

param ul_slots:

Specifies ‘nrofUplinkSlots’.

param ul_symbols:

Specifies ‘nrofUplinkSymbols’.