Rterminator
SCPI Command :
SYSTem:COMMunicate:GPIB[:SELF]:RTERminator
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() GpibTerminator[source]
# SYSTem:COMMunicate:GPIB[:SELF]:RTERminator value: enums.GpibTerminator = driver.system.communicate.gpib.self.rterminator.get()
This command selects the GPIB receive terminator. Output of binary data from the instrument to the control computer does not require such a terminator change.
- Returns:
terminator: LFEOI | EOI LFEOI According to the standard, the terminator in ASCII is LF and/or EOI. EOI For binary data transfers (e.g. trace data) from the control computer to the instrument, the binary code used for LF might be included in the binary data block, and therefore should not be interpreted as a terminator in this particular case. This can be avoided by using only the receive terminator EOI.
- set(terminator: GpibTerminator) None[source]
# SYSTem:COMMunicate:GPIB[:SELF]:RTERminator driver.system.communicate.gpib.self.rterminator.set(terminator = enums.GpibTerminator.EOI)
This command selects the GPIB receive terminator. Output of binary data from the instrument to the control computer does not require such a terminator change.
- Parameters:
terminator – LFEOI | EOI LFEOI According to the standard, the terminator in ASCII is LF and/or EOI. EOI For binary data transfers (e.g. trace data) from the control computer to the instrument, the binary code used for LF might be included in the binary data block, and therefore should not be interpreted as a terminator in this particular case. This can be avoided by using only the receive terminator EOI.