Series 2600B System SourceMeter® instrument Reference Manual Section 9: TSP command reference
2600BS-901-01 Rev. F/August 2021 9-101
format.byteorder
This attribute sets the binary byte order for the data that is printed using the printnumber() and
printbuffer() functions.
Instrument reset
Recall setup
Usage
order = format.byteorder
format.byteorder = order
Byte order value as follows:
â–ª Most significant byte first: 0, format.NORMAL, format.NETWORK, or
format.BIGENDIAN
â–ª Least significant byte first: 1, format.SWAPPED or format.LITTLEENDIAN
Details
This attribute selects the byte order in which data is written when you are printing data values with the
printnumber() and printbuffer() functions. The byte order attribute is only used with the
format.SREAL, format.REAL, format.REAL32, and format.REAL64 data formats.
format.NORMAL, format.BIGENDIAN, and format.NETWORK select the same byte order.
format.SWAPPED and format.LITTLEENDIAN select the same byte order. Selecting which to use
is a matter of preference.
Select the format.SWAPPED or format.LITTLEENDIAN byte order when sending data to a
computer with a Microsoft Windows operating system.
Example
x = 1.23
format.data = format.REAL32
format.byteorder = format.LITTLEENDIAN
printnumber(x)
format.byteorder = format.BIGENDIAN
printnumber(x)
The output depends on the terminal program
you use, but it looks something like:
#0¤p??
#0??p¤
Also see
format.asciiprecision (on page 9-100)
format.data (on page 9-102)
printbuffer() (on page 9-171)
printnumber() (on page 9-172)