blob: b88afcb943d262e9ff15547a624370bde7e91816 [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 */
kurtis.heimerl965e7572011-11-26 03:16:54 +0000115 USRPDevice (double _desiredSampleRate, bool skipRx);
dburgessb3a0ca42011-10-12 07:44:40 +0000116
117 /** Instantiate the USRP */
ttsouf60dafa2012-10-22 00:07:14 +0000118 bool open(const std::string &);
dburgessb3a0ca42011-10-12 07:44:40 +0000119
120 /** Start the USRP */
121 bool start();
122
123 /** Stop the USRP */
124 bool stop();
125
kurtis.heimerld9364002011-11-26 03:17:15 +0000126 /** Set priority not supported */
127 void setPriority() { return; }
128
kurtis.heimerle380af32011-11-26 03:18:55 +0000129 /** Only USB bus supported */
130 busType getBus() { return USB; }
131
dburgessb3a0ca42011-10-12 07:44:40 +0000132 /**
133 Read samples from the USRP.
134 @param buf preallocated buf to contain read result
135 @param len number of samples desired
136 @param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
137 @param timestamp The timestamp of the first samples to be read
138 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
139 @param RSSI The received signal strength of the read result
140 @return The number of samples actually read
141 */
142 int readSamples(short *buf, int len, bool *overrun,
143 TIMESTAMP timestamp = 0xffffffff,
144 bool *underrun = NULL,
145 unsigned *RSSI = NULL);
146 /**
147 Write samples to the USRP.
148 @param buf Contains the data to be written.
149 @param len number of samples to write.
150 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
151 @param timestamp The timestamp of the first sample of the data buffer.
152 @param isControl Set if data is a control packet, e.g. a ping command
153 @return The number of samples actually written
154 */
155 int writeSamples(short *buf, int len, bool *underrun,
156 TIMESTAMP timestamp = 0xffffffff,
157 bool isControl = false);
158
159 /** Update the alignment between the read and write timestamps */
160 bool updateAlignment(TIMESTAMP timestamp);
161
162 /** Set the transmitter frequency */
163 bool setTxFreq(double wFreq);
164
165 /** Set the receiver frequency */
166 bool setRxFreq(double wFreq);
167
168 /** Returns the starting write Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000169 TIMESTAMP initialWriteTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000170
171 /** Returns the starting read Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000172 TIMESTAMP initialReadTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000173
174 /** returns the full-scale transmit amplitude **/
175 double fullScaleInputValue() {return 13500.0;}
176
177 /** returns the full-scale receive amplitude **/
178 double fullScaleOutputValue() {return 9450.0;}
179
180 /** sets the receive chan gain, returns the gain setting **/
181 double setRxGain(double dB);
182
183 /** get the current receive gain */
184 double getRxGain(void) {return rxGain;}
185
186 /** return maximum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000187 double maxRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000188
189 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000190 double minRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000191
192 /** sets the transmit chan gain, returns the gain setting **/
193 double setTxGain(double dB);
194
195 /** return maximum Tx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000196 double maxTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000197
198 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000199 double minTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000200
201
202 /** Return internal status values */
203 inline double getTxFreq() { return 0;}
204 inline double getRxFreq() { return 0;}
205 inline double getSampleRate() {return actualSampleRate;}
206 inline double numberRead() { return samplesRead; }
207 inline double numberWritten() { return samplesWritten;}
208
209};
210
211#endif // _USRP_DEVICE_H_
212