Mode
SCPI Command :
SYSTem:CHANnel:MODE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() ChannelSettingsMode[source]
# SYSTem:CHANnel:MODE value: enums.ChannelSettingsMode = driver.system.channel.mode.get()
Determines which parameters are used when you create a new channel.
- Returns:
settings_mode: CSETting | PRESet CSETting (Default:) The general firmware parameters of the currently active channel are copied to the new channel. PRESet The default settings for the selected channel type are used for the new channel. This setting has the same effect as performing a channel preset for the new channel.
- set(settings_mode: ChannelSettingsMode) None[source]
# SYSTem:CHANnel:MODE driver.system.channel.mode.set(settings_mode = enums.ChannelSettingsMode.CSETting)
Determines which parameters are used when you create a new channel.
- Parameters:
settings_mode – CSETting | PRESet CSETting (Default:) The general firmware parameters of the currently active channel are copied to the new channel. PRESet The default settings for the selected channel type are used for the new channel. This setting has the same effect as performing a channel preset for the new channel.