先谢谢。
我正尝试使用未来技术设备国际有限公司的网桥(i2c / spi / uart / fifo)从串行设备读取数据。
设备仅设计为发送数据。它已经在Windows环境中进行了测试,并且可以正常工作。
我正在将Ubuntu 16.04.2 LTS与 pyserial python模块一起使用,如下所示:
import serial
ser = serial.Serial(
port ='/dev/ttyUSB0',
baudrate=38400,
parity=serial.PARITY_NONE,
stopbits=serial.STOPBITS_ONE,
bytesize=serial.EIGHTBITS,
timeout=5
)
buff = ser.read(128)
print buff
ser.close()
运行脚本时,我无法从设备读取任何内容。您有什么想法或建议吗?
非常感谢您的帮助。