Config
SCPI Commands :
[SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:MODE
[SOURce<HW>]:EFRontend:FREQuency:BAND:CONFig:SELect
- class ConfigCls[source]
Config commands group definition. 3 total commands, 1 Subgroups, 2 group commands
- get_mode() AutoManualMode [source]
# SCPI: [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.
- return:
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 [:SOURcehw]:EFRontend:FREQuency:BAND:CONFig:SELect.
- get_select() str [source]
# SCPI: [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’.
- return:
sel_band_config: string
- set_mode(mode: AutoManualMode) None [source]
# SCPI: [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.
- param 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 [:SOURcehw]:EFRontend:FREQuency:BAND:CONFig:SELect.
- set_select(sel_band_config: str) None [source]
# SCPI: [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’.
- param sel_band_config:
string
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.efrontend.frequency.band.config.clone()
Subgroups