Config

SCPI Commands :

[SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:MODE
[SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:SELect
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_mode() AutoManualMode[source]
# [SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:MODE
value: enums.AutoManualMode = driver.source.efrontend.frequency.band.config.get_mode()

Sets the mode for frequency band configuration of the external frontend.

Returns:

mode: AUTO | MANual AUTO Configures the frequency band automatically. R&S FE44S and R&S FE50DTR: For bandwidths <= 400 MHz, ‘IF Low’ is used. For bandwidths larger than 400 MHz, ‘IF High’ is used. R&S FE170ST or R&S FE110ST: ‘Spur Optimized’ is used. MANual Uses the frequency band configured by method RsSmw.source.efrontend.frequency.band.config.select() .

get_select() str[source]
# [SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:SELect
value: str = driver.source.efrontend.frequency.band.config.get_select()

Selects the frequency band configuration for the connected external frontend. Enter the mode as string, e.g. ‘IF Low’.

Returns:

sel_band_config: string

set_mode(mode: AutoManualMode) None[source]
# [SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:MODE
driver.source.efrontend.frequency.band.config.set_mode(mode = enums.AutoManualMode.AUTO)

Sets the mode for frequency band configuration of the external frontend.

Parameters:

mode – AUTO | MANual AUTO Configures the frequency band automatically. R&S FE44S and R&S FE50DTR: For bandwidths <= 400 MHz, ‘IF Low’ is used. For bandwidths larger than 400 MHz, ‘IF High’ is used. R&S FE170ST or R&S FE110ST: ‘Spur Optimized’ is used. MANual Uses the frequency band configured by method RsSmw.source.efrontend.frequency.band.config.select() .

set_select(sel_band_config: str) None[source]
# [SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:SELect
driver.source.efrontend.frequency.band.config.set_select(sel_band_config = 'abc')

Selects the frequency band configuration for the connected external frontend. Enter the mode as string, e.g. ‘IF Low’.

Parameters:

sel_band_config – string

Cloning the Group

# Create a copy of the original group, that exists independently
config_copy = driver.source.efrontend.frequency.band.config.clone()

Subgroups