mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
Cosmetic changes
This commit is contained in:
parent
ac4b016ee7
commit
d978c42b6e
@ -4,7 +4,7 @@
|
||||
|
||||
**Check the discussion group** [here](https://groups.io/g/sdrangel)
|
||||
|
||||
⚠ SDRangel is intended for the power user. We expect you to already have some experience with SDR applications and digital signal processing in general. SDRangel might be a bit overwhelming for you however you are encouraged to use the discussion group above to look for help.
|
||||
⚠ SDRangel is intended for the power user. We expect you to already have some experience with SDR applications and digital signal processing in general. SDRangel might be a bit overwhelming for you however you are encouraged to use the discussion group above to look for help. You can also find more information in the [Wiki](https://github.com/f4exb/sdrangel/wiki).
|
||||
|
||||
<h1>Source code</h1>
|
||||
|
||||
|
Binary file not shown.
@ -101,7 +101,7 @@ void PlutoSDROutputThread::run()
|
||||
|
||||
if (nbytes_tx != 4*m_blockSizeSamples)
|
||||
{
|
||||
qDebug("PlutoSDROutputThread::run: error pushing buf %d / %d\n", (int) nbytes_tx, (int) 4*m_blockSizeSamples);
|
||||
qDebug("PlutoSDROutputThread::run: error pushing buf %d / %d", (int) nbytes_tx, (int) 4*m_blockSizeSamples);
|
||||
usleep(200000);
|
||||
continue;
|
||||
}
|
||||
|
@ -96,7 +96,7 @@ void PlutoSDRInputThread::run()
|
||||
|
||||
if (nbytes_rx != m_blockSizeSamples*2)
|
||||
{
|
||||
qWarning("PlutoSDRInputThread::run: error refilling buf (1) %d / %d\n",(int) nbytes_rx, (int) m_blockSizeSamples*2);
|
||||
qWarning("PlutoSDRInputThread::run: error refilling buf (1) %d / %d",(int) nbytes_rx, (int) m_blockSizeSamples*2);
|
||||
usleep(200000);
|
||||
continue;
|
||||
}
|
||||
@ -121,7 +121,7 @@ void PlutoSDRInputThread::run()
|
||||
|
||||
if (nbytes_rx != m_blockSizeSamples*2)
|
||||
{
|
||||
qWarning("PlutoSDRInputThread::run: error refilling buf (2) %d / %d\n",(int) nbytes_rx, (int) m_blockSizeSamples*2);
|
||||
qWarning("PlutoSDRInputThread::run: error refilling buf (2) %d / %d",(int) nbytes_rx, (int) m_blockSizeSamples*2);
|
||||
usleep(200000);
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user