All

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDTTibased:DL<Stream>:ALL
class AllCls[source]

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

class AllStruct[source]

Response structure. Fields:

  • Number_Rb: List[int or bool]: numeric | OFF Number of allocated resource blocks. The same value must be configured for all streams of the carrier.

  • Start_Rb: List[int or bool]: numeric | OFF Position of first resource block. The same value must be configured for all streams of the carrier.

  • Modulation: List[enums.Modulation]: QPSK | Q16 | Q64 | Q256 | Q1024 | OFF QPSK | 16-QAM | 64-QAM | 256-QAM | 1024-QAM | no DL subframe

  • Trans_Block_Size_Idx: List[int or bool]: numeric | OFF Transport block size index

get(stream=Stream.Default) AllStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDTTibased:DL<Stream>:ALL
value: AllStruct = driver.configure.connection.pcc.udttiBased.downlink.all.get(stream = repcap.Stream.Default)

Configures all downlink subframes for the scheduling type ‘User-defined TTI-Based’. The parameters are entered 10 times, so that all subframes are configured by a single command (index = subframe number 0 to 9) : <NumberRB>0, …, <NumberRB>9, <StartRB>0, …, <StartRB>9, <Modulation>0, …, <Modulation>9, <TransBlockSizeIdx>0, …, <TransBlockSizeIdx>9 The allowed input ranges have dependencies and are described in the background information, see ‘User-defined channels’. For TDD UL and special subframes, you can set OFF or specify a number from the allowed input range. The effect is the same. A query returns OFF for non-DL subframes.

param stream:

optional repeated capability selector. Default value: S1 (settable in the interface ‘Downlink’)

return:

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

set(number_rb: List[int], start_rb: List[int], modulation: List[Modulation], trans_block_size_idx: List[int], stream=Stream.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDTTibased:DL<Stream>:ALL
driver.configure.connection.pcc.udttiBased.downlink.all.set(number_rb = [1, True, 2, False, 3], start_rb = [1, True, 2, False, 3], modulation = [Modulation.Q1024, Modulation.QPSK], trans_block_size_idx = [1, True, 2, False, 3], stream = repcap.Stream.Default)

Configures all downlink subframes for the scheduling type ‘User-defined TTI-Based’. The parameters are entered 10 times, so that all subframes are configured by a single command (index = subframe number 0 to 9) : <NumberRB>0, …, <NumberRB>9, <StartRB>0, …, <StartRB>9, <Modulation>0, …, <Modulation>9, <TransBlockSizeIdx>0, …, <TransBlockSizeIdx>9 The allowed input ranges have dependencies and are described in the background information, see ‘User-defined channels’. For TDD UL and special subframes, you can set OFF or specify a number from the allowed input range. The effect is the same. A query returns OFF for non-DL subframes.

param number_rb:

(integer or boolean items) numeric | OFF Number of allocated resource blocks. The same value must be configured for all streams of the carrier.

param start_rb:

(integer or boolean items) numeric | OFF Position of first resource block. The same value must be configured for all streams of the carrier.

param modulation:

QPSK | Q16 | Q64 | Q256 | Q1024 | OFF QPSK | 16-QAM | 64-QAM | 256-QAM | 1024-QAM | no DL subframe

param trans_block_size_idx:

(integer or boolean items) numeric | OFF Transport block size index

param stream:

optional repeated capability selector. Default value: S1 (settable in the interface ‘Downlink’)