Cell

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:NCELl:GSM: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.GsmBand: G085 | G09 | G18 | G19 GSM 850, GSM 900, GSM 1800, GSM 1900

  • Channel: int: integer Channel number used for the broadcast control channel (BCCH) Range: 0 to 1023, depending on GSM band, see table below

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

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

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: GsmBand, channel: int, measurement: bool = None, cellNo=CellNo.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:GSM:CELL<n>
driver.configure.ncell.gsm.cell.set(enable = False, band = enums.GsmBand.G04, channel = 1, measurement = False, cellNo = repcap.CellNo.Default)

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

param enable:

OFF | ON Enables or disables the entry

param band:

G085 | G09 | G18 | G19 GSM 850, GSM 900, GSM 1800, GSM 1900

param channel:

integer Channel number used for the broadcast control channel (BCCH) Range: 0 to 1023, depending on GSM band, see table below

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