RvSequence
SCPI Command :
[CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RVSequence
- class RvSequenceCls[source]
RvSequence commands group definition. 2 total commands, 1 Subgroups, 1 group commands
- class GetStruct[source]
Response structure. Fields:
Index: List[int]: Index of the entry to be configured (lowest index is 0) .
Tb_1: List[enums.Version]: RV sequence for the first transport block, for QPSK and 16QAM.
Tb_2: List[enums.Version]: RV sequence for the second transport block, for QPSK and 16QAM.
Qam_64: List[enums.Version]: RV sequence for 64QAM and 256QAM, first and second transport block.
- get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RVSequence value: GetStruct = driver.configure.signaling.lte.cell.harq.downlink.rvSequence.get(cell_name = 'abc')
Configures existing entries of user-defined RV sequences. If the mode is not user-defined, it is changed to user-defined. A query returns the sequences of the active mode, without changing the mode.
- param cell_name:
No help available
- return:
structure: for return value, see the help for GetStruct structure arguments.
- set(cell_name: str, index: List[int], tb_1: List[Version], tb_2: List[Version], qam_64: List[Version]) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RVSequence driver.configure.signaling.lte.cell.harq.downlink.rvSequence.set(cell_name = 'abc', index = [1, 2, 3], tb_1 = [Version.AUTO, Version.RV3], tb_2 = [Version.AUTO, Version.RV3], qam_64 = [Version.AUTO, Version.RV3])
Configures existing entries of user-defined RV sequences. If the mode is not user-defined, it is changed to user-defined. A query returns the sequences of the active mode, without changing the mode.
- param cell_name:
No help available
- param index:
Index of the entry to be configured (lowest index is 0) .
- param tb_1:
RV sequence for the first transport block, for QPSK and 16QAM.
- param tb_2:
RV sequence for the second transport block, for QPSK and 16QAM.
- param qam_64:
RV sequence for 64QAM and 256QAM, first and second transport block.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.signaling.lte.cell.harq.downlink.rvSequence.clone()
Subgroups