我有一个 Python 脚本,它通过pySerial将数据包写入 Arduino 板。有时在将代码写入开发板时,pySerial 会引发输入/输出错误,错误码为 5。
一些研究表明,这表明在写入表示与 Arduino 板连接的文件时出现错误。
发送的代码只发送单字节数据包:
try:
# Check if it's already a single byte
if isinstance(byte, str):
if len(byte) == 1: # It is. Send it.
self.serial.write(byte)
else: # It's not
raise PacketException
# Check if it's an integer
elif isinstance(byte, int):
self.serial.write(chr(byte)) # It is; convert it to a byte and send it
else: raise PacketException # I don't know what this is.
except Exception as ex:
print("Exception is: " + ex.__getitem__() + " " + ex.__str__())
此代码打印的错误是:
操作系统错误输入/输出错误 Errno 5
发送时我的代码有问题吗?我是否需要检查串行连接是否已准备好发送某些内容,或者发送后是否应该有延迟?还是硬件或与硬件的连接有问题?
编辑:我从 pyserial 查看了 Linux 实现,该实现只是将错误传递给我的代码。所以从那里没有新的真正见解。有没有一个好方法来测试程序中发生了什么?