1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

XTRX input: basic MIMO working

This commit is contained in:
f4exb
2018-12-31 20:22:42 +01:00
parent 598afa1386
commit 7c8a2120e6
2 changed files with 25 additions and 15 deletions
@@ -70,14 +70,13 @@ private:
struct xtrx_dev *m_dev;
Channel *m_channels; //!< Array of channels dynamically allocated for the given number of Rx channels
qint16 *m_buf;
unsigned int m_nbChannels;
unsigned int m_uniqueChannelIndex;
void run();
unsigned int getNbFifos();
void callbackSI(const qint16* buf, qint32 len);
void callbackMI(const qint16* buf, qint32 len);
void callbackMI(const qint16* buf0, const qint16* buf1, qint32 len);
};