我还是蟒蛇和乐器控制的新手,我面临着一些我无法找到答案的问题。 我正在使用PyVisa通过rs232控制单色仪(Spectral Products dk240)。 (Python 3.5,PyVisa 1.8)
我可以通过设置正确的终止字符来编写命令并读取响应。问题是有时仪器响应是单个字节没有终止,然后我得到一个超时(即使我在端口监视器上看到我想要的响应)。
我尝试使用read_raw来获取单个字节,但它不起作用。 这是我的代码的简单版本:
import pyvisa
rm = pyvisa.ResourceManager()
instrument = rm.open_resource('ASRL1::INSTR')
instrument.baud_rate= 9600
instrument.data_bits=8
instrument.stop_bits = pyvisa.constants.StopBits.one
instrument.parity = pyvisa.constants.Parity.none
instrument.read_termination = chr(24) #specified in the manual
instrument.write(chr(33)) # command to get the serial number
instrument.read() # this works!
instrument.write(chr(27)) # echo command
# instrument replies one byte echo (seen on port monitor)
instrument.read_raw(1) # I get a timeout here
和错误:
raise errors.VisaIOError(ret_value)
pyvisa.errors.VisaIOError: VI_ERROR_TMO (-1073807339): Timeout expired before operation completed.
我还试图将终止字符设置为“无”,因此签证不会等待,但仍然会超时。 另外,我尝试用read_raw(1)读取序列号,但是我从仪器得到了完整的答案而不是一个字节,为什么会这样?
任何帮助将不胜感激!!!
答案 0 :(得分:1)
这可能有点晚了,但是当我遇到一个依赖于bytes_in_buffer属性的自己的函数时,我帮助了自己。
def read_all(devicehandle):
with devicehandle.ignore_warning(constants.VI_SUCCESS_DEV_NPRESENT, constants.VI_SUCCESS_MAX_CNT):
try:
data , status = devicehandle.visalib.read(devicehandle.session, devicehandle.bytes_in_buffer)
except:
pass
return data
备注:它不适用于以太网连接。该属性不存在。