Sinterval

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval[:DL]
CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval:UL
class SintervalCls[source]

Sinterval commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_downlink() IntervalC[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval[:DL]
value: enums.IntervalC = driver.configure.connection.pcc.sps.sinterval.get_downlink()

Configures the DL subframe periodicity n for the scheduling type SPS. The UE is granted the configured RB allocation in every nth subframe. For TDD, the selected value is internally rounded down to a multiple of 10. Example: S128 means every 120th subframe.

return:

interval: S10 | S20 | S32 | S40 | S64 | S80 | S128 | S160 | S320 | S640 Every 10th subframe to every 640th subframe

get_uplink() SpsInteval[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval:UL
value: enums.SpsInteval = driver.configure.connection.pcc.sps.sinterval.get_uplink()

Configures the UL subframe periodicity n for the scheduling type SPS. The UE is granted the configured RB allocation in every nth subframe. For TDD, the selected value is internally rounded down to a multiple of 10. Example: S128 means every 120th subframe.

return:

interval: SADL | S1 | S2 | S3 | S4 | S5 | S10 | S20 | S32 | S40 | S64 | S80 | S128 | S160 | S320 | S640 SADL: same as downlink S1, S2 to S640: Every subframe, every 2nd subframe to every 640th subframe

set_downlink(interval: IntervalC) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval[:DL]
driver.configure.connection.pcc.sps.sinterval.set_downlink(interval = enums.IntervalC.S10)

Configures the DL subframe periodicity n for the scheduling type SPS. The UE is granted the configured RB allocation in every nth subframe. For TDD, the selected value is internally rounded down to a multiple of 10. Example: S128 means every 120th subframe.

param interval:

S10 | S20 | S32 | S40 | S64 | S80 | S128 | S160 | S320 | S640 Every 10th subframe to every 640th subframe

set_uplink(interval: SpsInteval) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SPS:SINTerval:UL
driver.configure.connection.pcc.sps.sinterval.set_uplink(interval = enums.SpsInteval.S1)

Configures the UL subframe periodicity n for the scheduling type SPS. The UE is granted the configured RB allocation in every nth subframe. For TDD, the selected value is internally rounded down to a multiple of 10. Example: S128 means every 120th subframe.

param interval:

SADL | S1 | S2 | S3 | S4 | S5 | S10 | S20 | S32 | S40 | S64 | S80 | S128 | S160 | S320 | S640 SADL: same as downlink S1, S2 to S640: Every subframe, every 2nd subframe to every 640th subframe