/** * * \section COPYRIGHT * * Copyright 2013-2014 The libLTE Developers. See the * COPYRIGHT file at the top-level directory of this distribution. * * \section LICENSE * * This file is part of the libLTE library. * * libLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * libLTE 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 Lesser General Public License for more details. * * A copy of the GNU Lesser General Public License can be found in * the LICENSE file in the top-level directory of this distribution * and at http://www.gnu.org/licenses/. * */ #include #include #include #include #include #include #include #include #include "liblte/phy/phy.h" #ifndef DISABLE_UHD #include "liblte/cuhd/cuhd.h" #endif #define MHZ 1000000 #define SAMP_FREQ 1920000 #define FLEN 9600 #define FLEN_PERIOD 0.005 int band = -1; int earfcn_start=-1, earfcn_end = -1; int nof_frames_find=200; float uhd_gain = 60.0; char *uhd_args=""; #define MAX_EARFCN 1000 lte_earfcn_t channels[MAX_EARFCN]; void usage(char *prog) { printf("Usage: %s [asefgv] -b band\n", prog); printf("\t-a UHD args [Default %s]\n", uhd_args); printf("\t-g UHD gain [Default %.2f dB]\n", uhd_gain); printf("\t-s earfcn_start [Default All]\n"); printf("\t-e earfcn_end [Default All]\n"); printf("\t-f nof_frames_find [Default %d]\n", nof_frames_find); printf("\t-v [set verbose to debug, default none]\n"); } void parse_args(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "asefgvb")) != -1) { switch(opt) { case 'a': uhd_args = argv[optind]; break; case 'b': band = atoi(argv[optind]); break; case 's': earfcn_start = atoi(argv[optind]); break; case 'e': earfcn_end = atoi(argv[optind]); break; case 'f': nof_frames_find = atoi(argv[optind]); break; case 'g': uhd_gain = atof(argv[optind]); break; case 'v': verbose++; break; default: usage(argv[0]); exit(-1); } } if (band == -1) { usage(argv[0]); exit(-1); } } int cuhd_recv_wrapper(void *h, void *data, uint32_t nsamples) { DEBUG(" ---- Receive %d samples ---- \n", nsamples); return cuhd_recv(h, data, nsamples, 1); } int main(int argc, char **argv) { int ret; int frame_cnt; int nof_freqs; uint32_t freq; ue_sync_t uesync; void *uhd; cf_t *buffer; lte_cell_t cell; if (argc < 3) { usage(argv[0]); exit(-1); } parse_args(argc,argv); printf("Opening UHD device...\n"); if (cuhd_open(uhd_args, &uhd)) { fprintf(stderr, "Error opening uhd\n"); exit(-1); } /* set uhd_gain */ cuhd_set_rx_gain(uhd, uhd_gain); nof_freqs = lte_band_get_fd_band(band, channels, earfcn_start, earfcn_end, MAX_EARFCN); if (nof_freqs < 0) { fprintf(stderr, "Error getting EARFCN list\n"); exit(-1); } for (freq=0;freq