Location

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:RFSettings:DL:APOint:LOCation
class LocationCls[source]

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

get(cell_name: str) Location[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:RFSettings:DL:APOint:LOCation
value: enums.Location = driver.configure.signaling.nradio.cell.rfSettings.downlink.apoint.location.get(cell_name = 'abc')

Selects a method for defining the downlink frequency.

param cell_name:

No help available

return:

location: - MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band. - USER: User-defined frequency, specified via a separate command.

set(cell_name: str, location: Location) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:RFSettings:DL:APOint:LOCation
driver.configure.signaling.nradio.cell.rfSettings.downlink.apoint.location.set(cell_name = 'abc', location = enums.Location.HIGH)

Selects a method for defining the downlink frequency.

param cell_name:

No help available

param location:
  • MID, LOW, HIGH: Automatic selection of mid, low or high position in the frequency band.

  • USER: User-defined frequency, specified via a separate command.