1

我使用 SOCAT 使用以下命令创建了一个 VSP:

socat -d -d pty,raw,echo=0 pty,raw,echo=0

在那里我能够创建一个串行设备 (19200,N,8,1) 并使用 Python 发送和接收数据。

因此,当我这样做时,我必须对配置为(19200,even_aprity,Python 中的硬件流)的另一台设备执行相同的操作,它会抛出以下错误:

Traceback (most recent call last):
  File "py2.py", line 163, in <module>
    buffer += ser.read(1)  # this will block until one more char or timeout
  File "/usr/lib/python2.6/dist-packages/serial/serialposix.py", line 311, in read
    if self.fd is None: raise portNotOpenError
serial.serialutil.SerialException: Port not open
Exception SystemError: 'error return without exception set' in <bound method BreakHandler.__del__ of <sig_handler.BreakHandler instance at 0xb719338c>> ignored

引导我

4

0 回答 0