blob: 588ab0cafb2fbd43479456d34fe1b5bcc441a660 [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001/*
2* Copyright 2008 Free Software Foundation, Inc.
3*
4* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
5*
6* This use of this software may be subject to additional restrictions.
7* See the LEGAL file in the main directory for details.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13*/
14
15#ifndef _USRP_DEVICE_H_
16#define _USRP_DEVICE_H_
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include "radioDevice.h"
23
24#ifdef HAVE_LIBUSRP_3_3 // [
25# include <usrp/usrp_standard.h>
26# include <usrp/usrp_bytesex.h>
27# include <usrp/usrp_prims.h>
28#else // HAVE_LIBUSRP_3_3 ][
29# include "usrp_standard.h"
30# include "usrp_bytesex.h"
31# include "usrp_prims.h"
32#endif // !HAVE_LIBUSRP_3_3 ]
33#include <sys/time.h>
34#include <math.h>
35#include <string>
36#include <iostream>
37
38
39/** Define types which are not defined in libusrp-3.1 */
40#ifndef HAVE_LIBUSRP_3_2
41#include <boost/shared_ptr.hpp>
42typedef boost::shared_ptr<usrp_standard_tx> usrp_standard_tx_sptr;
43typedef boost::shared_ptr<usrp_standard_rx> usrp_standard_rx_sptr;
44#endif // HAVE_LIBUSRP_3_2
45
46
47
48/** A class to handle a USRP rev 4, with a two RFX900 daughterboards */
49class USRPDevice: public RadioDevice {
50
51private:
52
53 static const double masterClockRate; ///< the USRP clock rate
54 double desiredSampleRate; ///< the desired sampling rate
55 usrp_standard_rx_sptr m_uRx; ///< the USRP receiver
56 usrp_standard_tx_sptr m_uTx; ///< the USRP transmitter
kurtis.heimerl79e71c92011-11-26 03:16:48 +000057
58 db_base_sptr m_dbRx; ///< rx daughterboard
59 db_base_sptr m_dbTx; ///< tx daughterboard
60 usrp_subdev_spec rxSubdevSpec;
61 usrp_subdev_spec txSubdevSpec;
62
dburgessb3a0ca42011-10-12 07:44:40 +000063 double actualSampleRate; ///< the actual USRP sampling rate
64 unsigned int decimRate; ///< the USRP decimation rate
65
66 unsigned long long samplesRead; ///< number of samples read from USRP
67 unsigned long long samplesWritten; ///< number of samples sent to USRP
68
69 bool started; ///< flag indicates USRP has started
70 bool skipRx; ///< set if USRP is transmit-only.
71
72 static const unsigned int currDataSize_log2 = 21;
73 static const unsigned long currDataSize = (1 << currDataSize_log2);
74 short *data;
75 unsigned long dataStart;
76 unsigned long dataEnd;
77 TIMESTAMP timeStart;
78 TIMESTAMP timeEnd;
79 bool isAligned;
80
81 Mutex writeLock;
82
83 short *currData; ///< internal data buffer when reading from USRP
84 TIMESTAMP currTimestamp; ///< timestamp of internal data buffer
85 unsigned currLen; ///< size of internal data buffer
86
87 TIMESTAMP timestampOffset; ///< timestamp offset b/w Tx and Rx blocks
88 TIMESTAMP latestWriteTimestamp; ///< timestamp of most recent ping command
89 TIMESTAMP pingTimestamp; ///< timestamp of most recent ping response
90 static const TIMESTAMP PINGOFFSET = 272; ///< undetermined delay b/w ping response timestamp and true receive timestamp
91 unsigned long hi32Timestamp;
92 unsigned long lastPktTimestamp;
93
94 double rxGain;
95
96#ifdef SWLOOPBACK
97 short loopbackBuffer[1000000];
98 int loopbackBufferSize;
99 double samplePeriod;
100
101 struct timeval startTime;
102 struct timeval lastReadTime;
103 bool firstRead;
104#endif
105
dburgessb3a0ca42011-10-12 07:44:40 +0000106 /** Set the transmission frequency */
107 bool tx_setFreq(double freq, double *actual_freq);
108
109 /** Set the receiver frequency */
110 bool rx_setFreq(double freq, double *actual_freq);
111
112 public:
113
114 /** Object constructor */
115 USRPDevice (double _desiredSampleRate);
116
117 /** Instantiate the USRP */
118 bool make(bool skipRx = false);
119
120 /** Start the USRP */
121 bool start();
122
123 /** Stop the USRP */
124 bool stop();
125
126 /**
127 Read samples from the USRP.
128 @param buf preallocated buf to contain read result
129 @param len number of samples desired
130 @param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
131 @param timestamp The timestamp of the first samples to be read
132 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
133 @param RSSI The received signal strength of the read result
134 @return The number of samples actually read
135 */
136 int readSamples(short *buf, int len, bool *overrun,
137 TIMESTAMP timestamp = 0xffffffff,
138 bool *underrun = NULL,
139 unsigned *RSSI = NULL);
140 /**
141 Write samples to the USRP.
142 @param buf Contains the data to be written.
143 @param len number of samples to write.
144 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
145 @param timestamp The timestamp of the first sample of the data buffer.
146 @param isControl Set if data is a control packet, e.g. a ping command
147 @return The number of samples actually written
148 */
149 int writeSamples(short *buf, int len, bool *underrun,
150 TIMESTAMP timestamp = 0xffffffff,
151 bool isControl = false);
152
153 /** Update the alignment between the read and write timestamps */
154 bool updateAlignment(TIMESTAMP timestamp);
155
156 /** Set the transmitter frequency */
157 bool setTxFreq(double wFreq);
158
159 /** Set the receiver frequency */
160 bool setRxFreq(double wFreq);
161
162 /** Returns the starting write Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000163 TIMESTAMP initialWriteTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000164
165 /** Returns the starting read Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000166 TIMESTAMP initialReadTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000167
168 /** returns the full-scale transmit amplitude **/
169 double fullScaleInputValue() {return 13500.0;}
170
171 /** returns the full-scale receive amplitude **/
172 double fullScaleOutputValue() {return 9450.0;}
173
174 /** sets the receive chan gain, returns the gain setting **/
175 double setRxGain(double dB);
176
177 /** get the current receive gain */
178 double getRxGain(void) {return rxGain;}
179
180 /** return maximum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000181 double maxRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000182
183 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000184 double minRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000185
186 /** sets the transmit chan gain, returns the gain setting **/
187 double setTxGain(double dB);
188
189 /** return maximum Tx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000190 double maxTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000191
192 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000193 double minTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000194
195
196 /** Return internal status values */
197 inline double getTxFreq() { return 0;}
198 inline double getRxFreq() { return 0;}
199 inline double getSampleRate() {return actualSampleRate;}
200 inline double numberRead() { return samplesRead; }
201 inline double numberWritten() { return samplesWritten;}
202
203};
204
205#endif // _USRP_DEVICE_H_
206