Bandwidth
SCPI Command :
CHANnel<*>:BANDwidth
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(channel=Channel.Default) BwLimit[source]
# CHANnel<*>:BANDwidth value: enums.BwLimit = driver.channel.bandwidth.get(channel = repcap.Channel.Default)
Selects the bandwidth limit for the indicated channel.
- Parameters:
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)
- Returns:
bandwidth_limit: FULL | B800 | B200 | B20
FULL: Use full bandwidth.
B200 | B20: Limit to 200 MHz or 20 MHz.
B800: Limit to 800 MHz. Available for 50 Ω coupling on scopes with ≥ 1 GHz instrument bandwith.
- set(bandwidth_limit: BwLimit, channel=Channel.Default) None[source]
# CHANnel<*>:BANDwidth driver.channel.bandwidth.set(bandwidth_limit = enums.BwLimit.B1500, channel = repcap.Channel.Default)
Selects the bandwidth limit for the indicated channel.
- Parameters:
bandwidth_limit –
FULL | B800 | B200 | B20
FULL: Use full bandwidth.
B200 | B20: Limit to 200 MHz or 20 MHz.
B800: Limit to 800 MHz. Available for 50 Ω coupling on scopes with ≥ 1 GHz instrument bandwith.
channel – optional repeated capability selector. Default value: Ch1 (settable in the interface ‘Channel’)