openMv 库 pyb.uart的问题
-
我使用该库和arduino通信,但是总是有数据丢失的情况,而且比较严重(基本发送2个完整数据,第三个数据就是不完整的)
from pyb import UART
uart = UART(3,115200)
while True:
uart.write("(1,2)(2,3)(3,1)")
print("get response:",uart.read())
怎么办,怎么才能提高传输准确度?是不是openMV板子的问题?
-
你又没有arduino的代码,不能确定是Arduino是否有问题。
先用串口调试扩展板。
https://singtown.com/product/49906/openmv-uart-debug-shield/
-
谢谢了,问题已解决了。