Cell

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:NCELl:TDSCdma: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 OB1: Band 1 (F) , channel 9400 to 9600 OB2: Band 2 (A) , channel 10050 to 10125 OB3: Band 3 (E) , channel 11500 to 12000

  • Channel: int: integer Channel number Range: 9400 to 12000, depending on operating band

  • Scrambling_Code: str: hex Cell parameter ID Range: #H0 to #H7F

  • 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:TDSCdma:CELL<n>
value: CellStruct = driver.configure.ncell.tdscdma.cell.get(cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for TD-SCDMA.

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:TDSCdma:CELL<n>
driver.configure.ncell.tdscdma.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 TD-SCDMA.

param enable:

OFF | ON Enables or disables the entry

param band:

OB1 | OB2 | OB3 OB1: Band 1 (F) , channel 9400 to 9600 OB2: Band 2 (A) , channel 10050 to 10125 OB3: Band 3 (E) , channel 11500 to 12000

param channel:

integer Channel number Range: 9400 to 12000, depending on operating band

param scrambling_code:

hex Cell parameter ID Range: #H0 to #H7F

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’)