SerialPortHelper icon indicating copy to clipboard operation
SerialPortHelper copied to clipboard

如果发送一个命令没有返回 下个命令无法发送

Open wudelu opened this issue 4 years ago • 2 comments

wudelu avatar Oct 21 '21 08:10 wudelu

同遇到,这个有解决吗

ChloeDimen avatar Apr 26 '22 07:04 ChloeDimen

/** * 从命令集合中取命令数据 * @return currentCmdEntity */ public synchronized SphCmdEntity get() { while (isGet) { try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } currentCmdEntity = mEntryList.remove(0); notify(); return currentCmdEntity; } 同遇到这个问题,追查了下,应该是这个地方循环机制的问题。但是我才学java和安卓,不会使用移植源码库,作者大大有空了可以开放这个地方的配置吗?

smmloveyou avatar Mar 26 '24 07:03 smmloveyou