Fix build of the Transceiver.

This commit is contained in:
Alexander Chemeris 2013-06-16 14:30:58 +04:00
parent 040b305789
commit d734e2d634
6 changed files with 10 additions and 4 deletions

View File

@ -36,6 +36,8 @@
#include "config.h"
#endif
using namespace GSM;
#define USB_LATENCY_INTRVL 10,0
#if USE_UHD

View File

@ -26,6 +26,8 @@
#define INCHUNK (625)
#define OUTCHUNK (625)
static const unsigned gSlotLen = 148; ///< number of symbols per slot, not counting guard periods
/** class to interface the transceiver with the USRP */
class RadioInterface {

View File

@ -24,6 +24,7 @@
#include "sigProcLib.h"
#include "GSMCommon.h"
#include "Interthread.h"
class radioVector : public signalVector {
public:

View File

@ -33,6 +33,8 @@
#include <Logger.h>
using namespace GSM;
#define TABLESIZE 1024
/** Lookup tables for trigonometric approximation */

View File

@ -17,10 +17,7 @@
#include "Vector.h"
#include "Complex.h"
#include "GSMTransfer.h"
using namespace GSM;
#include "BitVector.h"
/** Indicated signalVector symmetry */
enum Symmetry {

View File

@ -33,8 +33,10 @@ Harvind S. Samra, hssamra@kestrelsp.com
//#include "radioInterface.h"
#include <Logger.h>
#include <Configuration.h>
#include <GSMCommon.h>
using namespace std;
using namespace GSM;
ConfigurationTable gConfig;