Pcc

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:PCID
CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:ULDL
CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SSUBframe
class PccCls[source]

Pcc commands group definition. 17 total commands, 4 Subgroups, 3 group commands

get_pcid() int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:PCID
value: int = driver.configure.cell.pcc.get_pcid()

Defines the physical cell ID used for generation of the DL physical synchronization signals. If you use carrier aggregation, configure different values for the component carriers.

return:

idn: decimal Range: 0 to 503

get_ssubframe() int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SSUBframe
value: int = driver.configure.cell.pcc.get_ssubframe()

Selects a special subframe configuration, defining the inner structure of special subframes. This parameter is only relevant for TDD signals. The special subframe configurations are defined in 3GPP TS 36.211, chapter 4, ‘Frame Structure’. See also method RsCmwLteSig.Configure.Cell.Tdd.specific.

return:

special_subframe: integer Value 8 and 9 can only be used with normal cyclic prefix. Range: 0 to 9

get_ul_dl() int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:ULDL
value: int = driver.configure.cell.pcc.get_ul_dl()

Selects a UL-DL configuration, defining the combination of UL, DL and special subframes within a radio frame. This command is only relevant for duplex mode TDD. See also method RsCmwLteSig.Configure.Cell.Tdd.specific.

return:

uplink_downlink: integer Range: 0 to 6

set_pcid(idn: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:PCID
driver.configure.cell.pcc.set_pcid(idn = 1)

Defines the physical cell ID used for generation of the DL physical synchronization signals. If you use carrier aggregation, configure different values for the component carriers.

param idn:

decimal Range: 0 to 503

set_ssubframe(special_subframe: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:SSUBframe
driver.configure.cell.pcc.set_ssubframe(special_subframe = 1)

Selects a special subframe configuration, defining the inner structure of special subframes. This parameter is only relevant for TDD signals. The special subframe configurations are defined in 3GPP TS 36.211, chapter 4, ‘Frame Structure’. See also method RsCmwLteSig.Configure.Cell.Tdd.specific.

param special_subframe:

integer Value 8 and 9 can only be used with normal cyclic prefix. Range: 0 to 9

set_ul_dl(uplink_downlink: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CELL[:PCC]:ULDL
driver.configure.cell.pcc.set_ul_dl(uplink_downlink = 1)

Selects a UL-DL configuration, defining the combination of UL, DL and special subframes within a radio frame. This command is only relevant for duplex mode TDD. See also method RsCmwLteSig.Configure.Cell.Tdd.specific.

param uplink_downlink:

integer Range: 0 to 6

Cloning the Group

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

Subgroups