blob: f5bc9395f78cb9428f4f186340d215a6be212547 [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 */
Thomas Tsoucb69f082013-04-08 14:18:26 -0400115 USRPDevice(int sps, bool skipRx);
dburgessb3a0ca42011-10-12 07:44:40 +0000116
117 /** Instantiate the USRP */
Thomas Tsoucb69f082013-04-08 14:18:26 -0400118 int 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
Thomas Tsou02d88d12013-04-05 15:36:30 -0400129 enum TxWindowType getWindowType() { return TX_WINDOW_USRP1; }
kurtis.heimerle380af32011-11-26 03:18:55 +0000130
dburgessb3a0ca42011-10-12 07:44:40 +0000131 /**
132 Read samples from the USRP.
133 @param buf preallocated buf to contain read result
134 @param len number of samples desired
135 @param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
136 @param timestamp The timestamp of the first samples to be read
137 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
138 @param RSSI The received signal strength of the read result
139 @return The number of samples actually read
140 */
141 int readSamples(short *buf, int len, bool *overrun,
142 TIMESTAMP timestamp = 0xffffffff,
143 bool *underrun = NULL,
144 unsigned *RSSI = NULL);
145 /**
146 Write samples to the USRP.
147 @param buf Contains the data to be written.
148 @param len number of samples to write.
149 @param underrun Set if USRP does not have data to transmit, e.g. data not being sent fast enough
150 @param timestamp The timestamp of the first sample of the data buffer.
151 @param isControl Set if data is a control packet, e.g. a ping command
152 @return The number of samples actually written
153 */
154 int writeSamples(short *buf, int len, bool *underrun,
155 TIMESTAMP timestamp = 0xffffffff,
156 bool isControl = false);
157
158 /** Update the alignment between the read and write timestamps */
159 bool updateAlignment(TIMESTAMP timestamp);
160
161 /** Set the transmitter frequency */
162 bool setTxFreq(double wFreq);
163
164 /** Set the receiver frequency */
165 bool setRxFreq(double wFreq);
166
167 /** Returns the starting write Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000168 TIMESTAMP initialWriteTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000169
170 /** Returns the starting read Timestamp*/
kurtis.heimerlc8739b82011-11-02 00:06:34 +0000171 TIMESTAMP initialReadTimestamp(void) { return 20000;}
dburgessb3a0ca42011-10-12 07:44:40 +0000172
173 /** returns the full-scale transmit amplitude **/
174 double fullScaleInputValue() {return 13500.0;}
175
176 /** returns the full-scale receive amplitude **/
177 double fullScaleOutputValue() {return 9450.0;}
178
179 /** sets the receive chan gain, returns the gain setting **/
180 double setRxGain(double dB);
181
182 /** get the current receive gain */
183 double getRxGain(void) {return rxGain;}
184
185 /** return maximum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000186 double maxRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000187
188 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000189 double minRxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000190
191 /** sets the transmit chan gain, returns the gain setting **/
192 double setTxGain(double dB);
193
194 /** return maximum Tx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000195 double maxTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000196
197 /** return minimum Rx Gain **/
kurtis.heimerl79e71c92011-11-26 03:16:48 +0000198 double minTxGain(void);
dburgessb3a0ca42011-10-12 07:44:40 +0000199
200
201 /** Return internal status values */
202 inline double getTxFreq() { return 0;}
203 inline double getRxFreq() { return 0;}
204 inline double getSampleRate() {return actualSampleRate;}
205 inline double numberRead() { return samplesRead; }
206 inline double numberWritten() { return samplesWritten;}
207
208};
209
210#endif // _USRP_DEVICE_H_
211