Behavior

SCPI Command :

[CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RETX:BEHavior
class BehaviorCls[source]

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

get(cell_name: str) ReTxBehaviorB[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RETX:BEHavior
value: enums.ReTxBehaviorB = driver.configure.signaling.lte.cell.harq.downlink.reTx.behavior.get(cell_name = 'abc')

Defines a stop condition for retransmissions.

param cell_name:

No help available

return:

re_tx_behavior: - CONTinue: Send the maximum number of retransmissions. - STOP: Stop sending retransmissions when the UE answers with an ACK. - SNDMimo: Stop sending retransmissions when the UE answers with an ACK. For MIMO with two transport blocks, send no new data until HARQ for both transport blocks is complete (ACK or maximum retransmissions reached) . - SDTX: Stop sending retransmissions when DTX happens in the uplink.

set(cell_name: str, re_tx_behavior: ReTxBehaviorB) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:HARQ:DL:RETX:BEHavior
driver.configure.signaling.lte.cell.harq.downlink.reTx.behavior.set(cell_name = 'abc', re_tx_behavior = enums.ReTxBehaviorB.CONTinue)

Defines a stop condition for retransmissions.

param cell_name:

No help available

param re_tx_behavior:
  • CONTinue: Send the maximum number of retransmissions.

  • STOP: Stop sending retransmissions when the UE answers with an ACK.

  • SNDMimo: Stop sending retransmissions when the UE answers with an ACK. For MIMO with two transport blocks, send no new data until HARQ for both transport blocks is complete (ACK or maximum retransmissions reached) .

  • SDTX: Stop sending retransmissions when DTX happens in the uplink.