Pyserial使用默认系统串行配置

时间:2015-11-18 13:49:46

标签: python serial-port pyserial

使用python pyserial初始化串行连接时没有任何波特率,它会转到默认的9600波特配置

  

ser = serial.Serial('/ dev / ttyUSB0')​​

这个pyserial是否有任何选项可以通过已配置的设置(通过其他应用程序或 stty linux命令配置)读取/写入串口?

1 个答案:

答案 0 :(得分:1)

我已经研究过pySerial的源代码。看来这是不可能的。 PySerial有一组默认值。如果我没有弄错的话,当你调用open()方法时,它总会将端口配置为这些默认值或者你改变它们的任何设置。

这是Serial::open()方法实现的相关部分:

def open(self):
    """\
    Open port with current settings. This may throw a SerialException
    if the port cannot be opened."""

    # ... ...

    # open
    try:
        self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK)
    except OSError as msg:
        self.fd = None
        raise SerialException(msg.errno, "could not open port %s: %s" % (self._port, msg))
    #~ fcntl.fcntl(self.fd, fcntl.F_SETFL, 0)  # set blocking

    try:
        # **this is where configuration occurs**
        self._reconfigure_port(force_update=True)
    except:
        try:
            os.close(self.fd)
        except:
            # ignore any exception when closing the port
            # also to keep original exception that happened when setting up
            pass
        self.fd = None
        raise
    else:

https://github.com/pyserial/pyserial/blob/master/serial/serialposix.py#L299

我为你看到两种选择;在调用stty之前,从系统中获取您感兴趣的设置(可能使用Serial::open())并明确设置这些设置。

另一种选择是继承PySerial' Serial类,重新实现::open()方法,跳过配置部分:

    # self._reconfigure_port(force_update=True)

我不确定这是否会奏效。它可能会导致问题,因为实现的其他部分期望端口处于特定配置中,但它不是。

更新:我认为更好的open()方法实现会从已打开的端口读取设置,并设置Serial对象的必要属性/属性以反映这些设置。