Cscheduling

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:CSCHeduling:SFPattern
class CschedulingCls[source]

Cscheduling commands group definition. 6 total commands, 2 Subgroups, 1 group commands

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

Selects the subframe pattern for eMTC compact scheduling, 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]:CSCHeduling:SFPattern
driver.configure.connection.pcc.cscheduling.set_sf_pattern(pattern = enums.SubFramePattern.HAB10)

Selects the subframe pattern for eMTC compact scheduling, 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.cscheduling.clone()

Subgroups