mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
PlutoSDR MIMO: fixes
This commit is contained in:
parent
38d2a19338
commit
ad2aaa96db
@ -55,8 +55,8 @@ PlutoSDRMIMO::PlutoSDRMIMO(DeviceAPI *deviceAPI) :
|
||||
m_nbTx(0)
|
||||
{
|
||||
m_mimoType = MIMOHalfSynchronous;
|
||||
m_sampleMIFifo.init(2, PlutoSDRMIMOSettings::m_plutoSDRBlockSizeSamples);
|
||||
m_sampleMOFifo.init(2, PlutoSDRMIMOSettings::m_plutoSDRBlockSizeSamples);
|
||||
m_sampleMIFifo.init(2, 16 * PlutoSDRMIMOSettings::m_plutoSDRBlockSizeSamples);
|
||||
m_sampleMOFifo.init(2, 16 * PlutoSDRMIMOSettings::m_plutoSDRBlockSizeSamples);
|
||||
m_networkManager = new QNetworkAccessManager();
|
||||
connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
|
||||
|
||||
@ -68,6 +68,7 @@ PlutoSDRMIMO::PlutoSDRMIMO(DeviceAPI *deviceAPI) :
|
||||
m_deviceAPI->setNbSourceStreams(m_nbRx);
|
||||
m_nbTx = m_plutoParams->getBox()->getNbTx();
|
||||
m_deviceAPI->setNbSinkStreams(m_nbTx);
|
||||
qDebug("PlutoSDRMIMO::PlutoSDRMIMO: m_nbRx: %d m_nbTx: %d", m_nbRx, m_nbTx);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -90,11 +90,12 @@ int PlutoSDRMIThread::getFcPos() const
|
||||
void PlutoSDRMIThread::run()
|
||||
{
|
||||
std::ptrdiff_t p_inc = m_plutoBox->rxBufferStep();
|
||||
int sampleSize = m_plutoBox->getRxSampleSize(); // I/Q sample size in bytes
|
||||
int sampleSize = 4; // I/Q sample size in bytes
|
||||
int nbChan = p_inc / sampleSize; // number of I/Q channels
|
||||
|
||||
qDebug("PlutoSDRMOThread::run: nbChan: %d", nbChan);
|
||||
qDebug("PlutoSDRMIThread::run: rxBufferStep: %ld bytes", p_inc);
|
||||
qDebug("PlutoSDRMIThread::run: Rx sample size is %ld bytes", m_plutoBox->getRxSampleSize());
|
||||
qDebug("PlutoSDRMIThread::run: Rx sample size is %ld bytes", m_plutoBox->getRxSampleSize()); // couple of I/Q
|
||||
qDebug("PlutoSDRMIThread::run: Tx sample size is %ld bytes", m_plutoBox->getTxSampleSize());
|
||||
qDebug("PlutoSDRMIThread::run: nominal nbytes_rx is %ld bytes with 1 refill", m_plutoSDRBlockSizeSamples*p_inc);
|
||||
|
||||
|
@ -86,11 +86,12 @@ int PlutoSDRMOThread::getFcPos() const
|
||||
void PlutoSDRMOThread::run()
|
||||
{
|
||||
std::ptrdiff_t p_inc = m_plutoBox->txBufferStep();
|
||||
int sampleSize = m_plutoBox->getTxSampleSize(); // I/Q sample size in bytes
|
||||
int sampleSize = 4; // I/Q sample size in bytes
|
||||
int nbChan = p_inc / sampleSize; // number of I/Q channels
|
||||
|
||||
qDebug("PlutoSDRMOThread::run: nbChan: %d", nbChan);
|
||||
qDebug("PlutoSDRMOThread::run: txBufferStep: %ld bytes", p_inc);
|
||||
qDebug("PlutoSDRMOThread::run: Rx sample size is %ld bytes", m_plutoBox->getRxSampleSize());
|
||||
qDebug("PlutoSDRMOThread::run: Rx sample size is %ld bytes", m_plutoBox->getRxSampleSize()); // couple of I/Q
|
||||
qDebug("PlutoSDRMOThread::run: Tx sample size is %ld bytes", m_plutoBox->getTxSampleSize());
|
||||
qDebug("PlutoSDRMOThread::run: nominal nbytes_tx is %ld bytes", PlutoSDRMIMOSettings::m_plutoSDRBlockSizeSamples*p_inc);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user