Cell

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:NCELl:CDMA: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_Class: enums.BandClass: USC | KCEL | NAPC | TACS | JTAC | KPCS | N45T | IM2K | NA7C | B18M | NA8S | PA4M | PA8M | IEXT | USPC | AWS | U25B | U25F | NA9C | PS7C | LO7C USC: BC 0, US cellular KCEL: BC 0, Korean cellular NAPC: BC 1, North American PCS TACS: BC 2, TACS band JTAC: BC 3, JTACS band KPCS: BC 4, Korean PCS N45T: BC 5, NMT-450 IM2K: BC 6, IMT-2000 NA7C: BC 7, upper 700 MHz B18M: BC 8, 1800-MHz band NA9C: BC 9, North American 900 MHz NA8S: BC 10, secondary 800 MHz PA4M: BC 11, European 400-MHz PAMR PA8M: BC 12, 800-MHz PAMR IEXT: BC 13, IMT-2000 2.5-GHz extension USPC: BC 14, US PCS 1900 MHz AWS: BC 15, AWS band U25B: BC 16, US 2.5-GHz band U25F: BC 17, US 2.5 GHz forward PS7C: BC 18, public safety band 700 MHz LO7C: BC 19, lower 700 MHz

  • Channel: int: integer Channel number Range: 0 to 2108, depending on band class, see table below

  • Cell_Id: int: integer Physical cell ID Range: 0 to 511

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

Configures the entry number <n> of the neighbor cell list for CDMA2000 (1xRTT) or 1xEV-DO (HRPD) .

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_class: BandClass, channel: int, cell_id: int, measurement: bool = None, cellNo=CellNo.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:NCELl:CDMA:CELL<n>
driver.configure.ncell.cdma.cell.set(enable = False, band_class = enums.BandClass.AWS, channel = 1, cell_id = 1, measurement = False, cellNo = repcap.CellNo.Default)

Configures the entry number <n> of the neighbor cell list for CDMA2000 (1xRTT) or 1xEV-DO (HRPD) .

param enable:

OFF | ON Enables or disables the entry

param band_class:

USC | KCEL | NAPC | TACS | JTAC | KPCS | N45T | IM2K | NA7C | B18M | NA8S | PA4M | PA8M | IEXT | USPC | AWS | U25B | U25F | NA9C | PS7C | LO7C USC: BC 0, US cellular KCEL: BC 0, Korean cellular NAPC: BC 1, North American PCS TACS: BC 2, TACS band JTAC: BC 3, JTACS band KPCS: BC 4, Korean PCS N45T: BC 5, NMT-450 IM2K: BC 6, IMT-2000 NA7C: BC 7, upper 700 MHz B18M: BC 8, 1800-MHz band NA9C: BC 9, North American 900 MHz NA8S: BC 10, secondary 800 MHz PA4M: BC 11, European 400-MHz PAMR PA8M: BC 12, 800-MHz PAMR IEXT: BC 13, IMT-2000 2.5-GHz extension USPC: BC 14, US PCS 1900 MHz AWS: BC 15, AWS band U25B: BC 16, US 2.5-GHz band U25F: BC 17, US 2.5 GHz forward PS7C: BC 18, public safety band 700 MHz LO7C: BC 19, lower 700 MHz

param channel:

integer Channel number Range: 0 to 2108, depending on band class, see table below

param cell_id:

integer Physical cell ID Range: 0 to 511

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