Emtc

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:EMTC:SFPattern
class EmtcCls[source]

Emtc commands group definition. 8 total commands, 3 Subgroups, 1 group commands

get_sf_pattern() SubFramePattern[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:EMTC:SFPattern
value: enums.SubFramePattern = driver.configure.connection.pcc.udChannels.emtc.get_sf_pattern()

Selects the subframe pattern for user-defined channels, half-duplex. There are patterns with and without PDSCH HARQ-ACK bundling.

return:

pattern: STANdard | HAB8 | HAB10 STANdard: no bundling HAB8: bundling, 8 HARQ processes HAB10: bundling, 10 HARQ processes

set_sf_pattern(pattern: SubFramePattern) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:EMTC:SFPattern
driver.configure.connection.pcc.udChannels.emtc.set_sf_pattern(pattern = enums.SubFramePattern.HAB10)

Selects the subframe pattern for user-defined channels, half-duplex. There are patterns with and without PDSCH HARQ-ACK bundling.

param pattern:

STANdard | HAB8 | HAB10 STANdard: no bundling HAB8: bundling, 8 HARQ processes HAB10: bundling, 10 HARQ processes

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.connection.pcc.udChannels.emtc.clone()

Subgroups