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: numeric Specifies ‘nrofDownlinkSlots’. Range: 0 to 38

  • Dl_Symbols: int: numeric Specifies ‘nrofDownlinkSymbols’. Range: 0 to 14

  • Ul_Slots: int: numeric Specifies ‘nrofUplinkSlots’. Range: 1 to 40

  • Ul_Symbols: int: numeric Specifies ‘nrofUplinkSymbols’. Range: 0 to 14

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:

S15K | S30K | S60K 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:

S15K | S30K | S60K Subcarrier spacing for which the other settings apply.

param dl_slots:

numeric Specifies ‘nrofDownlinkSlots’. Range: 0 to 38

param dl_symbols:

numeric Specifies ‘nrofDownlinkSymbols’. Range: 0 to 14

param ul_slots:

numeric Specifies ‘nrofUplinkSlots’. Range: 1 to 40

param ul_symbols:

numeric Specifies ‘nrofUplinkSymbols’. Range: 0 to 14