Vcid
SCPI Commands :
TRIGger:SBHW:CAN:XDATa:VCID:CONDition
TRIGger:SBHW:CAN:XDATa:VCID:MIN
TRIGger:SBHW:CAN:XDATa:VCID:MAX
- Commands in total: 3Subgroups: 0Direct child commands: 3
- get_condition() OperatorB[source]
# TRIGger:SBHW:CAN:XDATa:VCID:CONDition value: enums.OperatorB = driver.trigger.sbhw.can.xdata.vcid.get_condition()
Sets the comparison condition for the VCID to a specific value or a range.
- Returns:
vcid_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:VCID:MIN.
INRange | OORange: In range / out of range: Set the minimum and maximum value of the range with TRIGger:SBHW:CAN:XDATa:VCID:MIN and TRIGger:SBHW:CAN:XDATa:VCID:MAX.
- get_max() List[int][source]
# TRIGger:SBHW:CAN:XDATa:VCID:MAX value: List[int] = driver.trigger.sbhw.can.xdata.vcid.get_max()
Sets the end value of a VCID range if method
RsMxo.trigger.sbhw.can.xdata.vcid.condition()is set to INRange or OORange.- Returns:
vcid_pattern_to: List of comma-separated values
- get_min() List[int][source]
# TRIGger:SBHW:CAN:XDATa:VCID:MIN value: List[int] = driver.trigger.sbhw.can.xdata.vcid.get_min()
Specifies a VCID pattern, or sets the start value of a range.
- Returns:
vcid_pattern: List of comma-separated values
- set_condition(vcid_operator: OperatorB) None[source]
# TRIGger:SBHW:CAN:XDATa:VCID:CONDition driver.trigger.sbhw.can.xdata.vcid.set_condition(vcid_operator = enums.OperatorB.EQUal)
Sets the comparison condition for the VCID to a specific value or a range.
- Parameters:
vcid_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:VCID:MIN.
INRange | OORange: In range / out of range: Set the minimum and maximum value of the range with TRIGger:SBHW:CAN:XDATa:VCID:MIN and TRIGger:SBHW:CAN:XDATa:VCID:MAX.
- set_max(vcid_pattern_to: List[int]) None[source]
# TRIGger:SBHW:CAN:XDATa:VCID:MAX driver.trigger.sbhw.can.xdata.vcid.set_max(vcid_pattern_to = [1, 2, 3])
Sets the end value of a VCID range if method
RsMxo.trigger.sbhw.can.xdata.vcid.condition()is set to INRange or OORange.- Parameters:
vcid_pattern_to – List of comma-separated values
- set_min(vcid_pattern: List[int]) None[source]
# TRIGger:SBHW:CAN:XDATa:VCID:MIN driver.trigger.sbhw.can.xdata.vcid.set_min(vcid_pattern = [1, 2, 3])
Specifies a VCID pattern, or sets the start value of a range.
- Parameters:
vcid_pattern – List of comma-separated values