DleCondition

SCPI Command :

SEARch:TRIGger:LIN:DLECondition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:LIN:DLECondition
value: enums.ConditionOperator = driver.search.trigger.lin.dleCondition.get(search = 'abc')

Operator to set the data length for search on LIN data. For Big Endian transfer direction, you can trigger on a number of bytes less than the data length of the frame, that means, on the first bytes that are transmitted. For Little Endian transfer direction, the exact number of data bytes in the frame must be set. Example: The data word to be sent is 12 34 56, and it is sent little endian by the LIN node. With Data length ≥ 2 and Transfer = Big endian, you trigger on the data of the first two bytes, that is 56 34. With Data length = 3 and Transfer = Little endian, you trigger on the required data word 12 34 56. The number of data bytes to be found is set with method RsRtx.search.trigger.lin.dlength.set() . See also: method RsRtx.search.trigger.lin.border.set() .

Returns:

dlc_operator: For little endian transfer direction, EQUal must be set.

set(search: str, dlc_operator: ConditionOperator) None[source]
# SEARch:TRIGger:LIN:DLECondition
driver.search.trigger.lin.dleCondition.set(search = 'abc', dlc_operator = enums.ConditionOperator.EQUal)

Operator to set the data length for search on LIN data. For Big Endian transfer direction, you can trigger on a number of bytes less than the data length of the frame, that means, on the first bytes that are transmitted. For Little Endian transfer direction, the exact number of data bytes in the frame must be set. Example: The data word to be sent is 12 34 56, and it is sent little endian by the LIN node. With Data length ≥ 2 and Transfer = Big endian, you trigger on the data of the first two bytes, that is 56 34. With Data length = 3 and Transfer = Little endian, you trigger on the required data word 12 34 56. The number of data bytes to be found is set with method RsRtx.search.trigger.lin.dlength.set() . See also: method RsRtx.search.trigger.lin.border.set() .

Parameters:

dlc_operator – For little endian transfer direction, EQUal must be set.