blob: 8915b17610e2c2f8c5b83da831191876f702aad8 [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 __RADIO_DEVICE_H__
16#define __RADIO_DEVICE_H__
17
ttsouf60dafa2012-10-22 00:07:14 +000018#include <string>
Thomas Tsou204a9f12013-10-29 18:34:16 -040019#include <vector>
dburgessb3a0ca42011-10-12 07:44:40 +000020
Pau Espin Pedrolefac20b2018-02-21 14:59:19 +010021extern "C" {
22#include "config_defs.h"
23}
24
dburgessb3a0ca42011-10-12 07:44:40 +000025#ifdef HAVE_CONFIG_H
26#include "config.h"
27#endif
28
Alexander Chemerisf931cf22016-06-18 10:42:33 +030029#define GSMRATE (1625e3/6)
Tom Tsou76764272016-06-24 14:25:39 -070030#define MCBTS_SPACING 800000.0
Thomas Tsoucb69f082013-04-08 14:18:26 -040031
dburgessb3a0ca42011-10-12 07:44:40 +000032/** a 64-bit virtual timestamp for radio data */
33typedef unsigned long long TIMESTAMP;
34
35/** A class to handle a USRP rev 4, with a two RFX900 daughterboards */
36class RadioDevice {
37
38 public:
kurtis.heimerle380af32011-11-26 03:18:55 +000039 /* Available transport bus types */
Thomas Tsou02d88d12013-04-05 15:36:30 -040040 enum TxWindowType { TX_WINDOW_USRP1, TX_WINDOW_FIXED };
kurtis.heimerle380af32011-11-26 03:18:55 +000041
Thomas Tsoucb69f082013-04-08 14:18:26 -040042 /* Radio interface types */
Tom Tsou05c6feb2016-06-22 16:09:44 -070043 enum InterfaceType {
44 NORMAL,
45 RESAMP_64M,
46 RESAMP_100M,
Tom Tsou76764272016-06-24 14:25:39 -070047 MULTI_ARFCN,
Tom Tsou05c6feb2016-06-22 16:09:44 -070048 };
Thomas Tsoucb69f082013-04-08 14:18:26 -040049
Tom Tsou05c6feb2016-06-22 16:09:44 -070050 static RadioDevice *make(size_t tx_sps, size_t rx_sps, InterfaceType type,
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +010051 size_t chans = 1, double offset = 0.0,
52 const std::vector<std::string>& tx_paths = std::vector<std::string>(1, ""),
53 const std::vector<std::string>& rx_paths = std::vector<std::string>(1, ""));
kurtis.heimerl965e7572011-11-26 03:16:54 +000054
kurtis.heimerldb2aae52011-11-26 03:17:13 +000055 /** Initialize the USRP */
Tom Tsou2f3e60b2016-07-17 19:29:08 -070056 virtual int open(const std::string &args, int ref, bool swap_channels)=0;
dburgessb3a0ca42011-10-12 07:44:40 +000057
Thomas Tsou8c336792013-11-15 16:26:05 -050058 virtual ~RadioDevice() { }
59
dburgessb3a0ca42011-10-12 07:44:40 +000060 /** Start the USRP */
61 virtual bool start()=0;
62
63 /** Stop the USRP */
64 virtual bool stop()=0;
65
Thomas Tsou02d88d12013-04-05 15:36:30 -040066 /** Get the Tx window type */
67 virtual enum TxWindowType getWindowType()=0;
kurtis.heimerle380af32011-11-26 03:18:55 +000068
kurtis.heimerldb2aae52011-11-26 03:17:13 +000069 /** Enable thread priority */
Thomas Tsou7553aa92013-11-08 12:50:03 -050070 virtual void setPriority(float prio = 0.5) = 0;
kurtis.heimerldb2aae52011-11-26 03:17:13 +000071
dburgessb3a0ca42011-10-12 07:44:40 +000072 /**
73 Read samples from the radio.
74 @param buf preallocated buf to contain read result
75 @param len number of samples desired
76 @param overrun Set if read buffer has been overrun, e.g. data not being read fast enough
77 @param timestamp The timestamp of the first samples to be read
78 @param underrun Set if radio does not have data to transmit, e.g. data not being sent fast enough
79 @param RSSI The received signal strength of the read result
80 @return The number of samples actually read
81 */
Thomas Tsou204a9f12013-10-29 18:34:16 -040082 virtual int readSamples(std::vector<short *> &bufs, int len, bool *overrun,
83 TIMESTAMP timestamp = 0xffffffff, bool *underrun = 0,
84 unsigned *RSSI = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +000085 /**
86 Write samples to the radio.
87 @param buf Contains the data to be written.
88 @param len number of samples to write.
89 @param underrun Set if radio does not have data to transmit, e.g. data not being sent fast enough
90 @param timestamp The timestamp of the first sample of the data buffer.
91 @param isControl Set if data is a control packet, e.g. a ping command
92 @return The number of samples actually written
93 */
Thomas Tsou204a9f12013-10-29 18:34:16 -040094 virtual int writeSamples(std::vector<short *> &bufs, int len, bool *underrun,
95 TIMESTAMP timestamp, bool isControl = false) = 0;
96
dburgessb3a0ca42011-10-12 07:44:40 +000097 /** Update the alignment between the read and write timestamps */
98 virtual bool updateAlignment(TIMESTAMP timestamp)=0;
Thomas Tsou204a9f12013-10-29 18:34:16 -040099
dburgessb3a0ca42011-10-12 07:44:40 +0000100 /** Set the transmitter frequency */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400101 virtual bool setTxFreq(double wFreq, size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000102
103 /** Set the receiver frequency */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400104 virtual bool setRxFreq(double wFreq, size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000105
106 /** Returns the starting write Timestamp*/
107 virtual TIMESTAMP initialWriteTimestamp(void)=0;
108
109 /** Returns the starting read Timestamp*/
110 virtual TIMESTAMP initialReadTimestamp(void)=0;
111
112 /** returns the full-scale transmit amplitude **/
113 virtual double fullScaleInputValue()=0;
114
115 /** returns the full-scale receive amplitude **/
116 virtual double fullScaleOutputValue()=0;
117
118 /** sets the receive chan gain, returns the gain setting **/
Thomas Tsou204a9f12013-10-29 18:34:16 -0400119 virtual double setRxGain(double dB, size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000120
121 /** gets the current receive gain **/
Thomas Tsou204a9f12013-10-29 18:34:16 -0400122 virtual double getRxGain(size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000123
124 /** return maximum Rx Gain **/
125 virtual double maxRxGain(void) = 0;
126
127 /** return minimum Rx Gain **/
128 virtual double minRxGain(void) = 0;
129
130 /** sets the transmit chan gain, returns the gain setting **/
Thomas Tsou204a9f12013-10-29 18:34:16 -0400131 virtual double setTxGain(double dB, size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000132
133 /** return maximum Tx Gain **/
134 virtual double maxTxGain(void) = 0;
135
136 /** return minimum Tx Gain **/
137 virtual double minTxGain(void) = 0;
138
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100139 /** sets the RX path to use, returns true if successful and false otherwise */
140 virtual bool setRxAntenna(const std::string &ant, size_t chan = 0) = 0;
141
142 /** return the used RX path */
143 virtual std::string getRxAntenna(size_t chan = 0) = 0;
144
145 /** sets the RX path to use, returns true if successful and false otherwise */
146 virtual bool setTxAntenna(const std::string &ant, size_t chan = 0) = 0;
147
148 /** return the used RX path */
149 virtual std::string getTxAntenna(size_t chan = 0) = 0;
150
Pau Espin Pedrol0fc20d12018-04-24 17:48:52 +0200151 /** return whether user drives synchronization of Tx/Rx of USRP */
152 virtual bool requiresRadioAlign() = 0;
153
dburgessb3a0ca42011-10-12 07:44:40 +0000154 /** Return internal status values */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400155 virtual double getTxFreq(size_t chan = 0) = 0;
156 virtual double getRxFreq(size_t chan = 0) = 0;
dburgessb3a0ca42011-10-12 07:44:40 +0000157 virtual double getSampleRate()=0;
158 virtual double numberRead()=0;
159 virtual double numberWritten()=0;
160
161};
162
163#endif