QO100_Transceiver icon indicating copy to clipboard operation
QO100_Transceiver copied to clipboard

FIFO bugs

Open kevinliupy opened this issue 1 year ago • 0 comments

There may be two bug in kmfifo.cpp line 94: *(pfo->plen) = len; to pfo->plen[pfo->wridx] = len;

line 120: int len = *pfo->plen; to int len = pfo->plen[pfo->rdidx];

kevinliupy avatar Dec 08 '22 08:12 kevinliupy