Af
SCPI Commands :
TRIGger:SBHW:CAN:XDATa:AF:CONDition
TRIGger:SBHW:CAN:XDATa:AF:MIN
TRIGger:SBHW:CAN:XDATa:AF:MAX
- Commands in total: 3Subgroups: 0Direct child commands: 3
- get_condition() OperatorB[source]
# TRIGger:SBHW:CAN:XDATa:AF:CONDition value: enums.OperatorB = driver.trigger.sbhw.can.xdata.af.get_condition()
Sets the comparison condition for the acceptance field to a specific value or a range.
- Returns:
af_operator: EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, not equal, less than, less or equal than, greater than, greater or equal than. These conditions require one pattern to be set with TRIGger:SBHW:CAN:XDATa:AF:MIN.
INRange | OORange: In range / out of range: Set the minimum and maximum value of the range with TRIGger:SBHW:CAN:XDATa:AF:MIN and TRIGger:SBHW:CAN:XDATa:AF:MAX.
- get_max() List[int][source]
# TRIGger:SBHW:CAN:XDATa:AF:MAX value: List[int] = driver.trigger.sbhw.can.xdata.af.get_max()
Sets the end value of an acceptance field if method
RsMxo.trigger.sbhw.can.xdata.af.condition()is set to INRange or OORange.- Returns:
af_pattern_to: List of comma-separated values
- get_min() List[int][source]
# TRIGger:SBHW:CAN:XDATa:AF:MIN value: List[int] = driver.trigger.sbhw.can.xdata.af.get_min()
Specifies an acceptance field pattern, or sets the start value of a range.
- Returns:
af_pattern: List of comma-separated values
- set_condition(af_operator: OperatorB) None[source]
# TRIGger:SBHW:CAN:XDATa:AF:CONDition driver.trigger.sbhw.can.xdata.af.set_condition(af_operator = enums.OperatorB.EQUal)
Sets the comparison condition for the acceptance field to a specific value or a range.
- Parameters:
af_operator –
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, not equal, less than, less or equal than, greater than, greater or equal than. These conditions require one pattern to be set with TRIGger:SBHW:CAN:XDATa:AF:MIN.
INRange | OORange: In range / out of range: Set the minimum and maximum value of the range with TRIGger:SBHW:CAN:XDATa:AF:MIN and TRIGger:SBHW:CAN:XDATa:AF:MAX.
- set_max(af_pattern_to: List[int]) None[source]
# TRIGger:SBHW:CAN:XDATa:AF:MAX driver.trigger.sbhw.can.xdata.af.set_max(af_pattern_to = [1, 2, 3])
Sets the end value of an acceptance field if method
RsMxo.trigger.sbhw.can.xdata.af.condition()is set to INRange or OORange.- Parameters:
af_pattern_to – List of comma-separated values
- set_min(af_pattern: List[int]) None[source]
# TRIGger:SBHW:CAN:XDATa:AF:MIN driver.trigger.sbhw.can.xdata.af.set_min(af_pattern = [1, 2, 3])
Specifies an acceptance field pattern, or sets the start value of a range.
- Parameters:
af_pattern – List of comma-separated values