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