|
RK3399 Ubuntu下调试串口是否默认打开?
发表于 2017-5-10 14:13:46
浏览:7475
|
回复:1
打印
只看该作者
[复制链接]
楼主
本帖最后由 svtter 于 2017-5-10 14:25 编辑
第一次使用RK3399,不知道如何使用调试串口。
- ser = serial.Serial("/dev/ttyS2", 1500000)
复制代码
1. 使用此Python-serial代码显示如上。显示:
- Traceback (most recent call last):
- File "urt2.py", line 6, in <module>
- ser = serial.Serial("/dev/ttyS2", 1500000)
- File "/usr/lib/python2.7/dist-packages/serial/serialutil.py", line 180, in __init__
- self.open()
- File "/usr/lib/python2.7/dist-packages/serial/serialposix.py", line 298, in open
- self._reconfigure_port(force_update=True)
- File "/usr/lib/python2.7/dist-packages/serial/serialposix.py", line 330, in _reconfigure_port
- raise SerialException("Could not configure port: %s" % msg)
- serial.serialutil.SerialException: Could not configure port: (5, 'Input/output error')
复制代码
2. 使用echo显示如下:
- root@firefly:/home/firefly/Work# echo hello > /dev/ttyS2
- bash: echo: write error: Input/output error
复制代码
3. 使用cat显示如下:
- root@firefly:/home/firefly/Work# cat /dev/ttyS2
- cat: /dev/ttyS2: Input/output error
复制代码
不知道哪里出了问题,是我调用方式有误吗?
请求解答,谢谢!
|
|