mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
181 lines
4.4 KiB
C
181 lines
4.4 KiB
C
/**
|
|
*
|
|
* \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 <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <unistd.h>
|
|
#include <math.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "liblte/phy/phy.h"
|
|
|
|
#include "cell_search_utils.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
|
|
|
|
#define MAX_EARFCN 1000
|
|
|
|
|
|
int band = -1;
|
|
int earfcn_start=-1, earfcn_end = -1;
|
|
|
|
cell_detect_cfg_t config = {50, 1.1};
|
|
|
|
|
|
float uhd_gain = 60.0;
|
|
char *uhd_args="";
|
|
|
|
void usage(char *prog) {
|
|
printf("Usage: %s [agsendtvb] -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-n nof_frames_total [Default 100]\n");
|
|
printf("\t-t threshold [Default %.2f]\n",config.threshold);
|
|
printf("\t-v [set verbose to debug, default none]\n");
|
|
}
|
|
|
|
void parse_args(int argc, char **argv) {
|
|
int opt;
|
|
while ((opt = getopt(argc, argv, "agsendtvb")) != -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 'n':
|
|
config.nof_frames_total = atoi(argv[optind]);
|
|
break;
|
|
case 't':
|
|
config.threshold = atof(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 main(int argc, char **argv) {
|
|
int n;
|
|
void *uhd;
|
|
ue_celldetect_result_t found_cells[3];
|
|
int nof_freqs;
|
|
lte_earfcn_t channels[MAX_EARFCN];
|
|
uint32_t freq;
|
|
uint8_t bch_payload[BCH_PAYLOAD_LEN];
|
|
uint32_t nof_tx_ports;
|
|
|
|
parse_args(argc, argv);
|
|
|
|
printf("Opening UHD device...\n");
|
|
if (cuhd_open(uhd_args, &uhd)) {
|
|
fprintf(stderr, "Error opening uhd\n");
|
|
exit(-1);
|
|
}
|
|
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<nof_freqs;freq+=10) {
|
|
|
|
/* set uhd_freq */
|
|
cuhd_set_rx_freq(uhd, (double) channels[freq].fd * MHZ);
|
|
cuhd_rx_wait_lo_locked(uhd);
|
|
usleep(10000);
|
|
INFO("Set uhd_freq to %.3f MHz\n", (double) channels[freq].fd * MHZ/1000000);
|
|
|
|
printf("[%3d/%d]: EARFCN %d Freq. %.2f MHz looking for PSS. \r", freq, nof_freqs,
|
|
channels[freq].id, channels[freq].fd);fflush(stdout);
|
|
|
|
if (VERBOSE_ISINFO()) {
|
|
printf("\n");
|
|
}
|
|
|
|
n = detect_all_cells(&config, uhd, found_cells);
|
|
if (n < 0) {
|
|
fprintf(stderr, "Error searching cell\n");
|
|
exit(-1);
|
|
}
|
|
if (n == CS_CELL_DETECTED) {
|
|
for (int i=0;i<3;i++) {
|
|
if (found_cells[i].peak > config.threshold/2) {
|
|
if (decode_pbch(uhd, &found_cells[i], config.nof_frames_total, bch_payload, &nof_tx_ports, NULL)) {
|
|
fprintf(stderr, "Error decoding PBCH\n");
|
|
exit(-1);
|
|
} else {
|
|
printf("Cell found with %d ports. Decoded MIB: \n", nof_tx_ports);
|
|
vec_fprint_hex(stdout, bch_payload, BCH_PAYLOAD_LEN);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
printf("\nBye\n");
|
|
|
|
cuhd_close(uhd);
|
|
exit(0);
|
|
}
|
|
|
|
|