Mode
SCPI Command :
SEARch:TRIGger:PATTern:TIMeout:MODE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) TimeoutRange[source]
# SEARch:TRIGger:PATTern:TIMeout:MODE value: enums.TimeoutRange = driver.search.trigger.pattern.timeout.mode.get(search = 'abc')
Defines the condition for the timeout.
- Parameters:
search – String with the name of the search
- Returns:
timeout_mode: HIGH | LOW | EITHer
EITHer: High or low, the pattern remains unchanged for the given time.
- set(search: str, timeout_mode: TimeoutRange) None[source]
# SEARch:TRIGger:PATTern:TIMeout:MODE driver.search.trigger.pattern.timeout.mode.set(search = 'abc', timeout_mode = enums.TimeoutRange.EITHer)
Defines the condition for the timeout.
- Parameters:
search – String with the name of the search
timeout_mode –
HIGH | LOW | EITHer
EITHer: High or low, the pattern remains unchanged for the given time.