Config

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:CSI:TRS:CONFig
class ConfigCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Index: int: Number of the TRS configuration.

  • Bw_Selection: enums.BwSelection: All RBs of the BWP or maximum 52 RBs.

  • Slot_Offset: int: Time domain offset.

  • Symbol_Pair: enums.SymbolPair: Selects the two OFDM symbols used for TRS. The first digit indicates the first symbol. The remaining digits indicate the second symbol. Example: S913 means symbol 9 and symbol 13.

  • Periodicity: enums.TrsPeriodicity: Periodicity for transmission of the resource set, in ms.

  • No_Consec_Slots: int: Number of slots per resource set in FR2.

class SetStruct[source]

Structure for setting input parameters. Fields:

  • Cell_Name: str: No parameter help available

  • Index: int: Number of the TRS configuration.

  • Bw_Selection: enums.BwSelection: All RBs of the BWP or maximum 52 RBs.

  • Slot_Offset: int: Time domain offset.

  • Symbol_Pair: enums.SymbolPair: Selects the two OFDM symbols used for TRS. The first digit indicates the first symbol. The remaining digits indicate the second symbol. Example: S913 means symbol 9 and symbol 13.

  • Periodicity: enums.TrsPeriodicity: Periodicity for transmission of the resource set, in ms.

  • No_Consec_Slots: int: Number of slots per resource set in FR2.

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:CSI:TRS:CONFig
value: GetStruct = driver.configure.signaling.nradio.cell.csi.trs.config.get(cell_name = 'abc')

Defines settings of TRS <Index>, for the initial BWP. If there are several TRS configurations, a query returns the settings of all TRS configurations.

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:NRADio:CELL:CSI:TRS:CONFig
structure = driver.configure.signaling.nradio.cell.csi.trs.config.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Index: int = 1
structure.Bw_Selection: enums.BwSelection = enums.BwSelection.ALL
structure.Slot_Offset: int = 1
structure.Symbol_Pair: enums.SymbolPair = enums.SymbolPair.S04
structure.Periodicity: enums.TrsPeriodicity = enums.TrsPeriodicity.P10
structure.No_Consec_Slots: int = 1
driver.configure.signaling.nradio.cell.csi.trs.config.set(structure)

Defines settings of TRS <Index>, for the initial BWP. If there are several TRS configurations, a query returns the settings of all TRS configurations.

param structure:

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