> USRP's cfile utility cannot write my data without overruns, so I use > my own app which I have attached to this email in case anyone is > interested.
Just some comments on the code: > int NumBytes = rx->read( > (char*)Buffer, > n*sizeof(short), > &Overrun); Your code doesn't do anyting if the read returns less then n*sizeof(short) bytes. Is that possible within the gnuradio code? > pStream->write((char*)Buffer, n*sizeof(short)); Same here the write might not write all n*sizeof(short) bytes. Robert _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
