Border

SCPI Command :

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

Sets the byte order (endianness) of the data transfer.

Returns:

endianness: BENDian | LENDian

  • BENDian: Big endian, data is analyzed and evaluated in the order of reception.

  • LENDian: Little endian, the instrument reads the complete data, reverses the byte order of the data, and compares it with the specified data word.

set(search: str, endianness: Endianness) None[source]
# SEARch:TRIGger:LIN:BORDer
driver.search.trigger.lin.border.set(search = 'abc', endianness = enums.Endianness.BENDian)

Sets the byte order (endianness) of the data transfer.

Parameters:

endianness

BENDian | LENDian

  • BENDian: Big endian, data is analyzed and evaluated in the order of reception.

  • LENDian: Little endian, the instrument reads the complete data, reverses the byte order of the data, and compares it with the specified data word.