AfHopping

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping:UCHannels
CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping
class AfHopping[source]

AfHopping commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Adaptive_Hopping: bool: OFF | ON Disables, enables adaptive hopping.

  • Mode: enums.AfHopingMode: EUT | NORM | USER EUT: only the EUT reports bad channels NORM: both, the EUT and instrument report bad channels USER: bad channels specified manually via [CMDLINK: CONFigure:BLUetooth:SIGNi:RFSettings:AFHopping:UCHannels CMDLINK]

get_uchannels()List[int][source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping:UCHannels
value: List[int] = driver.configure.rfSettings.afHopping.get_uchannels()

Specifies user-defined channels for adaptive frequency hopping (AFH) . The setting is relevant for mode = USER, see method RsCmwBluetoothSig.Configure.RfSettings.AfHopping.value.

return

channel_list: integer 79 comma-separated values, one value per channel: 0: channel is blocked for AFH 1: channel is released for AFH Range: 0 to 1

get_value()ValueStruct[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping
value: ValueStruct = driver.configure.rfSettings.afHopping.get_value()

Specifies the parameters of adaptive hopping.

return

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

set_uchannels(channel_list: List[int])None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping:UCHannels
driver.configure.rfSettings.afHopping.set_uchannels(channel_list = [1, 2, 3])

Specifies user-defined channels for adaptive frequency hopping (AFH) . The setting is relevant for mode = USER, see method RsCmwBluetoothSig.Configure.RfSettings.AfHopping.value.

param channel_list

integer 79 comma-separated values, one value per channel: 0: channel is blocked for AFH 1: channel is released for AFH Range: 0 to 1

set_value(value: RsCmwBluetoothSig.Implementations.Configure_.RfSettings_.AfHopping.AfHopping.ValueStruct)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RFSettings:AFHopping
driver.configure.rfSettings.afHopping.set_value(value = ValueStruct())

Specifies the parameters of adaptive hopping.

param value

see the help for ValueStruct structure arguments.