usrp_lib.cpp 16.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*******************************************************************************
    OpenAirInterface 
    Copyright(c) 1999 - 2014 Eurecom

    OpenAirInterface is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.


    OpenAirInterface is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with OpenAirInterface.The full GNU General Public License is 
    included in this distribution in the file called "COPYING". If not, 
    see <http://www.gnu.org/licenses/>.

   Contact Information
   OpenAirInterface Admin: openair_admin@eurecom.fr
   OpenAirInterface Tech : openair_tech@eurecom.fr
24
   OpenAirInterface Dev  : openair4g-devel@lists.eurecom.fr
25
  
ghaddab's avatar
ghaddab committed
26
   Address      : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE
27 28

 *******************************************************************************/
Raymond Knopp's avatar
 
Raymond Knopp committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

/** usrp_lib.cpp
 *
 * Author: HongliangXU : hong-liang-xu@agilent.com
 */

#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#include <uhd/utils/thread_priority.hpp>
#include <uhd/usrp/multi_usrp.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include <complex>
#include <fstream>
#include <cmath>
47

Raymond Knopp's avatar
 
Raymond Knopp committed
48
#include "common_lib.h"
49 50 51 52 53 54 55
#ifdef __SSE4_1__
#  include <smmintrin.h>
#endif
 
#ifdef __AVX2__
#  include <immintrin.h>
#endif
56

Raymond Knopp's avatar
 
Raymond Knopp committed
57 58 59 60 61 62 63 64
typedef struct
{

  // --------------------------------
  // variables for USRP configuration
  // --------------------------------
  uhd::usrp::multi_usrp::sptr usrp;
  //uhd::usrp::multi_usrp::sptr rx_usrp;
65
  
Raymond Knopp's avatar
 
Raymond Knopp committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
  //create a send streamer and a receive streamer
  uhd::tx_streamer::sptr tx_stream;
  uhd::rx_streamer::sptr rx_stream;

  uhd::tx_metadata_t tx_md;
  uhd::rx_metadata_t rx_md;

  uhd::time_spec_t tm_spec;
  //setup variables and allocate buffer
  uhd::async_metadata_t async_md;

  double sample_rate;
  // time offset between transmiter timestamp and receiver timestamp;
  double tdiff;
  // use usrp_time_offset to get this value
  int tx_forward_nsamps; //166 for 20Mhz


  // --------------------------------
  // Debug and output control
  // --------------------------------
  int num_underflows;
  int num_overflows;
  int num_seq_errors;

  int64_t tx_count;
  int64_t rx_count;
  openair0_timestamp rx_timestamp;

} usrp_state_t;


static int trx_usrp_start(openair0_device *device)
{
  usrp_state_t *s = (usrp_state_t*)device->priv;

  // init recv and send streaming
  uhd::stream_cmd_t cmd(uhd::stream_cmd_t::STREAM_MODE_START_CONTINUOUS);
Raymond Knopp's avatar
 
Raymond Knopp committed
104
  cmd.time_spec = s->usrp->get_time_now() + uhd::time_spec_t(0.05);
Raymond Knopp's avatar
 
Raymond Knopp committed
105 106 107
  cmd.stream_now = false; // start at constant delay
  s->rx_stream->issue_stream_cmd(cmd);

Raymond Knopp's avatar
 
Raymond Knopp committed
108
  s->tx_md.time_spec = cmd.time_spec + uhd::time_spec_t(1-(double)s->tx_forward_nsamps/s->sample_rate);
Raymond Knopp's avatar
 
Raymond Knopp committed
109 110 111 112 113 114 115 116
  s->tx_md.has_time_spec = true;
  s->tx_md.start_of_burst = true;
  s->tx_md.end_of_burst = false;


  s->rx_count = 0;
  s->tx_count = 0;
  s->rx_timestamp = 0;
117 118

  return 0;
Raymond Knopp's avatar
 
Raymond Knopp committed
119 120 121 122 123 124 125 126
}

static void trx_usrp_end(openair0_device *device)
{
  usrp_state_t *s = (usrp_state_t*)device->priv;

  s->rx_stream->issue_stream_cmd(uhd::stream_cmd_t::STREAM_MODE_STOP_CONTINUOUS);

navid's avatar
navid committed
127 128 129 130 131
  //send a mini EOB packet
  s->tx_md.end_of_burst = true;
  s->tx_stream->send("", 0, s->tx_md);
  s->tx_md.end_of_burst = false;
  
Raymond Knopp's avatar
 
Raymond Knopp committed
132
}
133

134
static int trx_usrp_write(openair0_device *device, openair0_timestamp timestamp, void **buff, int nsamps, int cc, int flags)
Raymond Knopp's avatar
 
Raymond Knopp committed
135 136 137 138 139 140 141
{
  usrp_state_t *s = (usrp_state_t*)device->priv;
  s->tx_md.time_spec = uhd::time_spec_t::from_ticks(timestamp, s->sample_rate);
  if(flags)
    s->tx_md.has_time_spec = true;
  else
    s->tx_md.has_time_spec = false;
Raymond Knopp's avatar
Raymond Knopp committed
142 143 144 145 146 147 148 149

  if (cc>1) {
    std::vector<void *> buff_ptrs;
    for (int i=0;i<cc;i++) buff_ptrs.push_back(buff[i]);
    s->tx_stream->send(buff_ptrs, nsamps, s->tx_md);
  }
  else
    s->tx_stream->send(buff[0], nsamps, s->tx_md);
Raymond Knopp's avatar
 
Raymond Knopp committed
150
  s->tx_md.start_of_burst = false;
151 152

  return 0;
Raymond Knopp's avatar
 
Raymond Knopp committed
153 154
}

Raymond Knopp's avatar
 
Raymond Knopp committed
155
static int trx_usrp_read(openair0_device *device, openair0_timestamp *ptimestamp, void **buff, int nsamps, int cc)
Raymond Knopp's avatar
 
Raymond Knopp committed
156
{
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
   usrp_state_t *s = (usrp_state_t*)device->priv;
   int samples_received=0,i,j;
   int nsamps2;  // aligned to upper 32 or 16 byte boundary
#if defined(__x86_64) || defined(__i386__)
#ifdef __AVX2__
   __m256i buff_tmp[2][nsamps>>3];
   nsamps2 = (nsamps+7)>>3;
#else
   __m128i buff_tmp[2][nsamps>>2];
   nsamps2 = (nsamps+3)>>2;
#endif
#elif defined(__arm__)
   int16x8_t buff_tmp[2][nsamps>>2];
   nsamps2 = (nsamps+3)>>2;
#endif

Raymond Knopp's avatar
 
Raymond Knopp committed
173

Raymond Knopp's avatar
 
Raymond Knopp committed
174
  
Raymond Knopp's avatar
Raymond Knopp committed
175
  if (cc>1) {
176
    // receive multiple channels (e.g. RF A and RF B)
Raymond Knopp's avatar
Raymond Knopp committed
177
    std::vector<void *> buff_ptrs;
178
    for (int i=0;i<cc;i++) buff_ptrs.push_back(buff_tmp[i]);
Raymond Knopp's avatar
Raymond Knopp committed
179
    samples_received = s->rx_stream->recv(buff_ptrs, nsamps, s->rx_md);
180 181
  } else {
    // receive a single channel (e.g. from connector RF A)
182 183
    samples_received = s->rx_stream->recv(buff_tmp[0], nsamps, s->rx_md);
  }
184

185 186
  // bring RX data into 12 LSBs for softmodem RX
  for (int i=0;i<cc;i++) {
187
    for (int j=0; j<nsamps2; j++) {      
188 189 190 191 192 193 194 195 196 197
#if defined(__x86_64__) || defined(__i386__)
#ifdef __AVX2__
      ((__m256i *)buff[i])[j] = _mm256_srai_epi16(buff_tmp[i][j],4);
#else
      ((__m128i *)buff[i])[j] = _mm_srai_epi16(buff_tmp[i][j],4);
#endif
#elif defined(__arm__)
      ((int16x8_t*)buff[i])[j] = vshrq_n_s16(buff_tmp[i][j],4);
#endif
    }
198
    }
Raymond Knopp's avatar
 
Raymond Knopp committed
199 200 201 202
  if (samples_received < nsamps) {
    printf("[recv] received %d samples out of %d\n",samples_received,nsamps);
    
  }
203

Raymond Knopp's avatar
 
Raymond Knopp committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
  //handle the error code
  switch(s->rx_md.error_code){
  case uhd::rx_metadata_t::ERROR_CODE_NONE:
    break;
  case uhd::rx_metadata_t::ERROR_CODE_OVERFLOW:
    printf("[recv] USRP RX OVERFLOW!\n");
    s->num_overflows++;
    break;
  case uhd::rx_metadata_t::ERROR_CODE_TIMEOUT:
    printf("[recv] USRP RX TIMEOUT!\n");
    break;
  default:
    printf("[recv] Unexpected error on RX, Error code: 0x%x\n",s->rx_md.error_code);
    break;
  }
Raymond Knopp's avatar
 
Raymond Knopp committed
219 220 221
  s->rx_count += nsamps;
  s->rx_timestamp = s->rx_md.time_spec.to_ticks(s->sample_rate);
  *ptimestamp = s->rx_timestamp;
222

Raymond Knopp's avatar
 
Raymond Knopp committed
223 224 225
  return samples_received;
}

Raymond Knopp's avatar
 
Raymond Knopp committed
226 227 228 229 230 231 232 233
openair0_timestamp get_usrp_time(openair0_device *device) 
{
 
  usrp_state_t *s = (usrp_state_t*)device->priv;
  
  return s->usrp->get_time_now().to_ticks(s->sample_rate);
} 

Raymond Knopp's avatar
 
Raymond Knopp committed
234 235 236 237
static bool is_equal(double a, double b)
{
  return std::fabs(a-b) < std::numeric_limits<double>::epsilon();
}
Raymond Knopp's avatar
 
Raymond Knopp committed
238

239
int trx_usrp_set_freq(openair0_device* device, openair0_config_t *openair0_cfg, int dummy) {
Raymond Knopp's avatar
 
Raymond Knopp committed
240 241 242 243 244 245 246 247 248 249

  usrp_state_t *s = (usrp_state_t*)device->priv;

  s->usrp->set_tx_freq(openair0_cfg[0].tx_freq[0]);
  s->usrp->set_rx_freq(openair0_cfg[0].rx_freq[0]);

  return(0);
  
}

Raymond Knopp's avatar
 
Raymond Knopp committed
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
int openair0_set_rx_frequencies(openair0_device* device, openair0_config_t *openair0_cfg) {

  usrp_state_t *s = (usrp_state_t*)device->priv;
  static int first_call=1;
  static double rf_freq,diff;

  uhd::tune_request_t rx_tune_req(openair0_cfg[0].rx_freq[0]);

  rx_tune_req.rf_freq_policy = uhd::tune_request_t::POLICY_MANUAL;
  rx_tune_req.rf_freq = openair0_cfg[0].rx_freq[0];
  rf_freq=openair0_cfg[0].rx_freq[0];
  s->usrp->set_rx_freq(rx_tune_req);

  return(0);
  
}

267
int trx_usrp_set_gains(openair0_device* device, 
268
		       openair0_config_t *openair0_cfg) {
Raymond Knopp's avatar
 
Raymond Knopp committed
269 270 271 272

  usrp_state_t *s = (usrp_state_t*)device->priv;

  s->usrp->set_tx_gain(openair0_cfg[0].tx_gain[0]);
273 274 275 276 277 278 279 280 281 282 283
  ::uhd::gain_range_t gain_range = s->usrp->get_rx_gain_range(0);
  // limit to maximum gain
  if (openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0] > gain_range.stop()) {
    
    printf("RX Gain 0 too high, reduce by %f dB\n",
	   openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0] - gain_range.stop());	   
    exit(-1);
  }
  s->usrp->set_rx_gain(openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0]);
  printf("Setting USRP RX gain to %f\n", openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0]);

Raymond Knopp's avatar
 
Raymond Knopp committed
284 285
  return(0);
}
286

287
int trx_usrp_stop(int card) {
288 289
  return(0);
}
290

291

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
rx_gain_calib_table_t calib_table[] = {
  {3500000000.0,46.0},
  {2660000000.0,53.0},
  {2300000000.0,54.0},
  {1880000000.0,55.0},
  {816000000.0,62.0},
  {-1,0}};

void set_rx_gain_offset(openair0_config_t *openair0_cfg, int chain_index) {

  int i=0;
  // loop through calibration table to find best adjustment factor for RX frequency
  double min_diff = 6e9,diff;
 
  while (calib_table[i].freq>0) {
    diff = fabs(openair0_cfg->rx_freq[chain_index] - calib_table[i].freq);
    printf("cal %d: freq %f, offset %f, diff %f\n",
	   i,calib_table[i].freq,calib_table[i].offset,diff);
    if (min_diff > diff) {
      min_diff = diff;
      openair0_cfg->rx_gain_offset[chain_index] = calib_table[i].offset;
    }
    i++;
  }
  
}

319 320

int trx_usrp_get_stats(openair0_device* device) {
321

322 323 324
  return(0);

}
325
int trx_usrp_reset_stats(openair0_device* device) {
326 327 328 329

  return(0);

}
330

331

332 333 334
extern "C" {
  int device_init(openair0_device* device, openair0_config_t *openair0_cfg, char *cfgfile) {
    
335
  uhd::set_thread_priority_safe(1.0);
Raymond Knopp's avatar
 
Raymond Knopp committed
336 337 338 339
  usrp_state_t *s = (usrp_state_t*)malloc(sizeof(usrp_state_t));
  memset(s, 0, sizeof(usrp_state_t));

  // Initialize USRP device
Raymond Knopp's avatar
 
Raymond Knopp committed
340

Raymond Knopp's avatar
 
Raymond Knopp committed
341
  std::string args = "type=b200";
Raymond Knopp's avatar
Raymond Knopp committed
342 343


Raymond Knopp's avatar
 
Raymond Knopp committed
344
  uhd::device_addrs_t device_adds = uhd::device::find(args);
Raymond Knopp's avatar
 
Raymond Knopp committed
345 346
  size_t i;

347 348
  printf("Checking for USRPs\n");
  
Raymond Knopp's avatar
 
Raymond Knopp committed
349 350
  if(device_adds.size() == 0)
  {
351 352 353 354 355 356 357 358
    double usrp_master_clock = 184.32e6;

    std::string args = "type=x300";
    
    // workaround for an api problem, master clock has to be set with the constructor not via set_master_clock_rate
    args += boost::str(boost::format(",master_clock_rate=%f") % usrp_master_clock);
    
    uhd::device_addrs_t device_adds = uhd::device::find(args);
Raymond Knopp's avatar
 
Raymond Knopp committed
359

360 361 362 363 364
    if(device_adds.size() == 0)
    {
      std::cerr<<"No USRP Device Found. " << std::endl;
      free(s);
      return -1;
Raymond Knopp's avatar
Raymond Knopp committed
365

366
    }
Raymond Knopp's avatar
Raymond Knopp committed
367

368
 printf("Found USRP X300\n");
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
    s->usrp = uhd::usrp::multi_usrp::make(args);
    //  s->usrp->set_rx_subdev_spec(rx_subdev);
    //  s->usrp->set_tx_subdev_spec(tx_subdev);

    // lock mboard clocks
    s->usrp->set_clock_source("internal");
    
    // this is not working yet, master clock has to be set via constructor
    // set master clock rate and sample rate for tx & rx for streaming
    //s->usrp->set_master_clock_rate(usrp_master_clock);
  } else {
    printf("Found USRP B200");
    s->usrp = uhd::usrp::multi_usrp::make(args);

    //  s->usrp->set_rx_subdev_spec(rx_subdev);
    //  s->usrp->set_tx_subdev_spec(tx_subdev);

386 387 388
// do not explicitly set the clock to "internal", because this will disable the gpsdo
//    // lock mboard clocks
//    s->usrp->set_clock_source("internal");
389 390 391
    // set master clock rate and sample rate for tx & rx for streaming
    s->usrp->set_master_clock_rate(30.72e6);
  }
Raymond Knopp's avatar
Raymond Knopp committed
392 393


Raymond Knopp's avatar
 
Raymond Knopp committed
394

Raymond Knopp's avatar
 
Raymond Knopp committed
395
  for(i=0;i<s->usrp->get_rx_num_channels();i++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
396
    if (i<openair0_cfg[0].rx_num_channels) {
Raymond Knopp's avatar
Raymond Knopp committed
397
      s->usrp->set_rx_rate(openair0_cfg[0].sample_rate,i);
kortke's avatar
kortke committed
398
      s->usrp->set_rx_bandwidth(openair0_cfg[0].rx_bw,i);
Raymond Knopp's avatar
 
Raymond Knopp committed
399
      printf("Setting rx freq/gain on channel %lu/%lu\n",i,s->usrp->get_rx_num_channels());
Raymond Knopp's avatar
Raymond Knopp committed
400
      s->usrp->set_rx_freq(openair0_cfg[0].rx_freq[i],i);
401 402 403 404 405 406 407 408 409 410 411 412 413
      set_rx_gain_offset(&openair0_cfg[0],i);

      ::uhd::gain_range_t gain_range = s->usrp->get_rx_gain_range(i);
      // limit to maximum gain
      if (openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i] > gain_range.stop()) {
	
        printf("RX Gain %lu too high, lower by %f dB\n",i,openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i] - gain_range.stop());
	exit(-1);
      }
      s->usrp->set_rx_gain(openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i],i);
      printf("RX Gain %lu %f (%f) => %f (max %f)\n",i,
	     openair0_cfg[0].rx_gain[i],openair0_cfg[0].rx_gain_offset[i],
	     openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i],gain_range.stop());
Raymond Knopp's avatar
 
Raymond Knopp committed
414 415
    }
  }
Raymond Knopp's avatar
 
Raymond Knopp committed
416
  for(i=0;i<s->usrp->get_tx_num_channels();i++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
417
    if (i<openair0_cfg[0].tx_num_channels) {
Raymond Knopp's avatar
Raymond Knopp committed
418 419
      s->usrp->set_tx_rate(openair0_cfg[0].sample_rate,i);
      s->usrp->set_tx_bandwidth(openair0_cfg[0].tx_bw,i);
Raymond Knopp's avatar
 
Raymond Knopp committed
420
      printf("Setting tx freq/gain on channel %lu/%lu\n",i,s->usrp->get_tx_num_channels());
Raymond Knopp's avatar
Raymond Knopp committed
421 422
      s->usrp->set_tx_freq(openair0_cfg[0].tx_freq[i],i);
      s->usrp->set_tx_gain(openair0_cfg[0].tx_gain[i],i);
Raymond Knopp's avatar
 
Raymond Knopp committed
423 424
    }
  }
Raymond Knopp's avatar
Raymond Knopp committed
425 426


Raymond Knopp's avatar
 
Raymond Knopp committed
427 428
  // display USRP settings
  std::cout << boost::format("Actual master clock: %fMHz...") % (s->usrp->get_master_clock_rate()/1e6) << std::endl;
Raymond Knopp's avatar
 
Raymond Knopp committed
429 430

  // create tx & rx streamer
Raymond Knopp's avatar
 
Raymond Knopp committed
431
  uhd::stream_args_t stream_args_rx("sc16", "sc16");
Raymond Knopp's avatar
 
Raymond Knopp committed
432
  //stream_args_rx.args["spp"] = str(boost::format("%d") % 2048);//(openair0_cfg[0].rx_num_channels*openair0_cfg[0].samples_per_packet));
Raymond Knopp's avatar
 
Raymond Knopp committed
433
  for (i = 0; i<openair0_cfg[0].rx_num_channels; i++)
Raymond Knopp's avatar
 
Raymond Knopp committed
434 435 436 437 438 439 440
    stream_args_rx.channels.push_back(i);
  s->rx_stream = s->usrp->get_rx_stream(stream_args_rx);
  std::cout << boost::format("rx_max_num_samps %u") % (s->rx_stream->get_max_num_samps()) << std::endl;
  //openair0_cfg[0].samples_per_packet = s->rx_stream->get_max_num_samps();

  uhd::stream_args_t stream_args_tx("sc16", "sc16");
  //stream_args_tx.args["spp"] = str(boost::format("%d") % 2048);//(openair0_cfg[0].tx_num_channels*openair0_cfg[0].samples_per_packet));
Raymond Knopp's avatar
 
Raymond Knopp committed
441
  for (i = 0; i<openair0_cfg[0].tx_num_channels; i++)
Raymond Knopp's avatar
 
Raymond Knopp committed
442 443
      stream_args_tx.channels.push_back(i);
  s->tx_stream = s->usrp->get_tx_stream(stream_args_tx);
Raymond Knopp's avatar
 
Raymond Knopp committed
444 445
  std::cout << boost::format("tx_max_num_samps %u") % (s->tx_stream->get_max_num_samps()) << std::endl;

Raymond Knopp's avatar
 
Raymond Knopp committed
446 447 448

  s->usrp->set_time_now(uhd::time_spec_t(0.0));

Raymond Knopp's avatar
 
Raymond Knopp committed
449 450 451


  
452

Raymond Knopp's avatar
Raymond Knopp committed
453 454
  for (i=0;i<openair0_cfg[0].rx_num_channels;i++) {
    if (i<openair0_cfg[0].rx_num_channels) {
Raymond Knopp's avatar
 
Raymond Knopp committed
455
      printf("RX Channel %lu\n",i);
Raymond Knopp's avatar
Raymond Knopp committed
456 457 458 459 460 461 462 463 464 465 466
      std::cout << boost::format("Actual RX sample rate: %fMSps...") % (s->usrp->get_rx_rate(i)/1e6) << std::endl;
      std::cout << boost::format("Actual RX frequency: %fGHz...") % (s->usrp->get_rx_freq(i)/1e9) << std::endl;
      std::cout << boost::format("Actual RX gain: %f...") % (s->usrp->get_rx_gain(i)) << std::endl;
      std::cout << boost::format("Actual RX bandwidth: %fM...") % (s->usrp->get_rx_bandwidth(i)/1e6) << std::endl;
      std::cout << boost::format("Actual RX antenna: %s...") % (s->usrp->get_rx_antenna(i)) << std::endl;
    }
  }

  for (i=0;i<openair0_cfg[0].tx_num_channels;i++) {

    if (i<openair0_cfg[0].tx_num_channels) { 
Raymond Knopp's avatar
 
Raymond Knopp committed
467
      printf("TX Channel %lu\n",i);
Raymond Knopp's avatar
Raymond Knopp committed
468 469 470 471 472 473 474 475
      std::cout << std::endl<<boost::format("Actual TX sample rate: %fMSps...") % (s->usrp->get_tx_rate(i)/1e6) << std::endl;
      std::cout << boost::format("Actual TX frequency: %fGHz...") % (s->usrp->get_tx_freq(i)/1e9) << std::endl;
      std::cout << boost::format("Actual TX gain: %f...") % (s->usrp->get_tx_gain(i)) << std::endl;
      std::cout << boost::format("Actual TX bandwidth: %fM...") % (s->usrp->get_tx_bandwidth(i)/1e6) << std::endl;
      std::cout << boost::format("Actual TX antenna: %s...") % (s->usrp->get_tx_antenna(i)) << std::endl;
    }
  }

Raymond Knopp's avatar
 
Raymond Knopp committed
476
  std::cout << boost::format("Device timestamp: %f...") % (s->usrp->get_time_now().get_real_secs()) << std::endl;
Raymond Knopp's avatar
 
Raymond Knopp committed
477 478

  device->priv = s;
479
  device->type             = USRP_DEV; 
Raymond Knopp's avatar
 
Raymond Knopp committed
480 481
  device->trx_start_func = trx_usrp_start;
  device->trx_write_func = trx_usrp_write;
482 483 484 485 486 487 488
  device->trx_read_func  = trx_usrp_read;
  device->trx_get_stats_func = trx_usrp_get_stats;
  device->trx_reset_stats_func = trx_usrp_reset_stats;
  device->trx_end_func   = trx_usrp_end;
  device->trx_stop_func  = trx_usrp_stop;
  device->trx_set_freq_func = trx_usrp_set_freq;
  device->trx_set_gains_func   = trx_usrp_set_gains;
489
  
490
  s->sample_rate = openair0_cfg[0].sample_rate;
Raymond Knopp's avatar
 
Raymond Knopp committed
491 492
  // TODO:
  // init tx_forward_nsamps based usrp_time_offset ex
493
  /*if(is_equal(s->sample_rate, (double)30.72e6))
Raymond Knopp's avatar
 
Raymond Knopp committed
494 495 496 497
    s->tx_forward_nsamps  = 176;
  if(is_equal(s->sample_rate, (double)15.36e6))
    s->tx_forward_nsamps = 90;
  if(is_equal(s->sample_rate, (double)7.68e6))
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
    s->tx_forward_nsamps = 50;*/
/* move device specific parameters from lte-softmodem.c here */
    if(is_equal(s->sample_rate, (double)30.72e6)) {
      openair0_cfg->tx_delay = 8;
      s->tx_forward_nsamps  = 175;
      openair0_cfg->tx_forward_nsamps  = 175;
    }
    if(is_equal(s->sample_rate, (double)15.36e6)) {
      openair0_cfg->tx_delay = 5;
      s->tx_forward_nsamps = 95;
      openair0_cfg->tx_forward_nsamps = 95;
    }
    if(is_equal(s->sample_rate, (double)7.68e6)) {
      openair0_cfg->tx_delay = 5;
      s->tx_forward_nsamps = 70;
      openair0_cfg->tx_forward_nsamps = 70;
    }
    if(is_equal(s->sample_rate, (double)1.92e6)) {
      openair0_cfg->tx_delay = 8;
      s->tx_forward_nsamps = 40;
      openair0_cfg->tx_forward_nsamps = 40;
    }
    openair0_cfg->iq_txshift= 5;
    openair0_cfg->iq_rxrescale = 15;
    printf("check params %d:%d",openair0_cfg->tx_forward_nsamps, openair0_cfg->tx_delay);
   
Raymond Knopp's avatar
 
Raymond Knopp committed
524 525
  return 0;
}
526
}