Mode
SCPI Command :
SYSTem:IFGain:MODE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() IfGainMode[source]
# SYSTem:IFGain:MODE value: enums.IfGainMode = driver.system.ifGain.mode.get()
Configures the internal IF gain settings in HP emulation mode due to the application needs. This setting is only taken into account for resolution bandwidth < 300 kHz and is only available if a HP language is selected using method
RsFsw.system.language.set().- Returns:
mode: NORMal | PULSe NORMal Optimized for high dynamic range, overload limit is close to reference level. PULSe Optimized for pulsed signals, overload limit up to 10 dB above reference level.
- set(mode: IfGainMode) None[source]
# SYSTem:IFGain:MODE driver.system.ifGain.mode.set(mode = enums.IfGainMode.NORMal)
Configures the internal IF gain settings in HP emulation mode due to the application needs. This setting is only taken into account for resolution bandwidth < 300 kHz and is only available if a HP language is selected using method
RsFsw.system.language.set().- Parameters:
mode – NORMal | PULSe NORMal Optimized for high dynamic range, overload limit is close to reference level. PULSe Optimized for pulsed signals, overload limit up to 10 dB above reference level.