dj0abr / QO100_Transceiver

QO-100 Software Transceiver using an Adalm-Pluto and an SBC (Raspberry, Odroid ...)
GNU General Public License v3.0
43 stars 10 forks source link

FIFO bugs #26

Open kevinliupy opened 1 year ago

kevinliupy commented 1 year ago

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];