Cell

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:NCELl:WCDMa:CELL<n>
class CellCls[source]

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

class CellStruct[source]

Response structure. Fields:

  • Enable: bool: OFF | ON Enables or disables the entry

  • Band: enums.OperatingBandB: OB1 | OB2 | OB3 | OB4 | OB5 | OB6 | OB7 | OB8 | OB9 | OB10 | OB11 | OB12 | OB13 | OB14 | OB19 | OB20 | OB21 | OB22 | OB25 | OBS1 | OBS2 | OBS3 | OBL1 | OB26 OB1, …, OB14: band I to XIV OB19, …, OB22: band XIX to XXII OB25, OB26: band XXV, XXVI OBS1: band S OBS2: band S 170 MHz OBS3: band S 190 MHz OBL1: band L

  • Channel: int: integer Downlink channel number Range: 412 to 11000, depending on operating band, see table below

  • Scrambling_Code: str: hex Primary scrambling code Range: #H0 to #H1FF

  • Measurement: bool: OFF | ON Disables / enables neighbor cell measurements for the entry ON is only allowed if also Enable = ON

get(cellNo=CellNo.Default) CellStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:WCDMa:CELL<n>
value: CellStruct = driver.configure.ncell.wcdma.cell.get(cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for WCDMA.

param cellNo:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Ncell’)

return:

structure: for return value, see the help for CellStruct structure arguments.

set(enable: bool, band: OperatingBandB, channel: int, scrambling_code: str, measurement: bool = None, cellNo=CellNo.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:WCDMa:CELL<n>
driver.configure.ncell.wcdma.cell.set(enable = False, band = enums.OperatingBandB.OB1, channel = 1, scrambling_code = rawAbc, measurement = False, cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for WCDMA.

param enable:

OFF | ON Enables or disables the entry

param band:

OB1 | OB2 | OB3 | OB4 | OB5 | OB6 | OB7 | OB8 | OB9 | OB10 | OB11 | OB12 | OB13 | OB14 | OB19 | OB20 | OB21 | OB22 | OB25 | OBS1 | OBS2 | OBS3 | OBL1 | OB26 OB1, …, OB14: band I to XIV OB19, …, OB22: band XIX to XXII OB25, OB26: band XXV, XXVI OBS1: band S OBS2: band S 170 MHz OBS3: band S 190 MHz OBL1: band L

param channel:

integer Downlink channel number Range: 412 to 11000, depending on operating band, see table below

param scrambling_code:

hex Primary scrambling code Range: #H0 to #H1FF

param measurement:

OFF | ON Disables / enables neighbor cell measurements for the entry ON is only allowed if also Enable = ON

param cellNo:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Ncell’)