mirror of https://github.com/PentHertz/srsLTE.git
253 lines
7.3 KiB
C
253 lines
7.3 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2020 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
#include <math.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
|
|
#include "srslte/phy/rf/rf_utils.h"
|
|
#include "srslte/phy/ue/ue_cell_search_nbiot.h"
|
|
|
|
#ifndef DISABLE_RF
|
|
#include "srslte/phy/rf/rf.h"
|
|
#endif
|
|
|
|
#define MHZ 1000000
|
|
#define SAMP_FREQ 1920000
|
|
#define FLEN 9600
|
|
#define FLEN_PERIOD 0.005
|
|
|
|
#define MAX_EARFCN 1000
|
|
#define RASTER_OFFSET 2500
|
|
|
|
#define NUM_RASTER_OFFSET 5
|
|
double raster_offset[NUM_RASTER_OFFSET] = {0.0, 2500.0, -2500.0, 7500.0, -7500.0};
|
|
|
|
int band = -1;
|
|
int earfcn_start = -1, earfcn_end = -1;
|
|
|
|
cell_search_cfg_t cell_detect_config = {.max_frames_pbch = SRSLTE_DEFAULT_MAX_FRAMES_NPBCH,
|
|
.max_frames_pss = SRSLTE_DEFAULT_MAX_FRAMES_NPSS,
|
|
.nof_valid_pss_frames = SRSLTE_DEFAULT_NOF_VALID_NPSS_FRAMES,
|
|
.init_agc = 0.0,
|
|
.force_tdd = false};
|
|
|
|
struct cells {
|
|
srslte_nbiot_cell_t cell;
|
|
float freq;
|
|
int dl_earfcn;
|
|
float power;
|
|
};
|
|
struct cells results[1024];
|
|
|
|
float rf_gain = 70.0;
|
|
char* rf_args = "";
|
|
bool scan_raster_offset = false;
|
|
|
|
void usage(char* prog)
|
|
{
|
|
printf("Usage: %s [agsendtvb] -b band\n", prog);
|
|
printf("\t-a RF args [Default %s]\n", rf_args);
|
|
printf("\t-g RF gain [Default %.2f dB]\n", rf_gain);
|
|
printf("\t-s earfcn_start [Default All]\n");
|
|
printf("\t-e earfcn_end [Default All]\n");
|
|
printf("\t-r Also scan frequencies with raster offset [Default %s]\n", scan_raster_offset ? "Yes" : "No");
|
|
printf("\t-n nof_frames_total [Default 100]\n");
|
|
printf("\t-v [set srslte_verbose to debug, default none]\n");
|
|
}
|
|
|
|
void parse_args(int argc, char** argv)
|
|
{
|
|
int opt;
|
|
while ((opt = getopt(argc, argv, "agserndvb")) != -1) {
|
|
switch (opt) {
|
|
case 'a':
|
|
rf_args = argv[optind];
|
|
break;
|
|
case 'b':
|
|
band = (int)strtol(argv[optind], NULL, 10);
|
|
break;
|
|
case 's':
|
|
earfcn_start = (int)strtol(argv[optind], NULL, 10);
|
|
break;
|
|
case 'e':
|
|
earfcn_end = (int)strtol(argv[optind], NULL, 10);
|
|
break;
|
|
case 'n':
|
|
cell_detect_config.max_frames_pss = (int)strtol(argv[optind], NULL, 10);
|
|
break;
|
|
case 'g':
|
|
rf_gain = strtof(argv[optind], NULL);
|
|
break;
|
|
case 'r':
|
|
scan_raster_offset = true;
|
|
break;
|
|
case 'v':
|
|
srslte_verbose++;
|
|
break;
|
|
default:
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
}
|
|
if (band == -1) {
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
}
|
|
|
|
int srslte_rf_recv_wrapper(void* h, cf_t* data[SRSLTE_MAX_PORTS], uint32_t nsamples, srslte_timestamp_t* t)
|
|
{
|
|
DEBUG(" ---- Receive %d samples ----", nsamples);
|
|
void* ptr[SRSLTE_MAX_PORTS];
|
|
for (int i = 0; i < SRSLTE_MAX_PORTS; i++) {
|
|
ptr[i] = data[i];
|
|
}
|
|
return srslte_rf_recv_with_time_multi(h, ptr, nsamples, true, NULL, NULL);
|
|
}
|
|
|
|
bool go_exit = false;
|
|
|
|
void sig_int_handler(int signo)
|
|
{
|
|
printf("SIGINT received. Exiting...\n");
|
|
if (signo == SIGINT) {
|
|
go_exit = true;
|
|
}
|
|
}
|
|
|
|
static SRSLTE_AGC_CALLBACK(srslte_rf_set_rx_gain_wrapper)
|
|
{
|
|
srslte_rf_set_rx_gain((srslte_rf_t*)h, gain_db);
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int n;
|
|
srslte_rf_t rf;
|
|
srslte_ue_cellsearch_nbiot_t cs;
|
|
srslte_nbiot_ue_cellsearch_result_t found_cells[3];
|
|
int nof_freqs;
|
|
srslte_earfcn_t channels[MAX_EARFCN];
|
|
uint32_t freq;
|
|
uint32_t n_found_cells = 0;
|
|
|
|
parse_args(argc, argv);
|
|
|
|
printf("Opening RF device...\n");
|
|
if (srslte_rf_open(&rf, rf_args)) {
|
|
fprintf(stderr, "Error opening rf\n");
|
|
exit(-1);
|
|
}
|
|
if (!cell_detect_config.init_agc) {
|
|
srslte_rf_set_rx_gain(&rf, rf_gain);
|
|
} else {
|
|
printf("Starting AGC thread...\n");
|
|
if (srslte_rf_start_gain_thread(&rf, false)) {
|
|
fprintf(stderr, "Error opening rf\n");
|
|
exit(-1);
|
|
}
|
|
srslte_rf_set_rx_gain(&rf, 50);
|
|
}
|
|
|
|
// Supress RF messages
|
|
srslte_rf_suppress_stdout(&rf);
|
|
|
|
nof_freqs = srslte_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);
|
|
}
|
|
|
|
sigset_t sigset;
|
|
sigemptyset(&sigset);
|
|
sigaddset(&sigset, SIGINT);
|
|
sigprocmask(SIG_UNBLOCK, &sigset, NULL);
|
|
signal(SIGINT, sig_int_handler);
|
|
|
|
for (freq = 0; freq < nof_freqs && !go_exit; freq++) {
|
|
for (int i = 0; i < (scan_raster_offset ? NUM_RASTER_OFFSET : 1); i++) {
|
|
// set rf_freq
|
|
double rf_freq = channels[freq].fd * MHZ + raster_offset[i];
|
|
srslte_rf_set_rx_freq(&rf, 0, rf_freq);
|
|
INFO("Set rf_freq to %.3f Hz", rf_freq);
|
|
|
|
printf("[%3d/%d]: EARFCN %d, %.2f MHz looking for NPSS.\n", freq, nof_freqs, channels[freq].id, rf_freq / 1e6);
|
|
fflush(stdout);
|
|
|
|
if (SRSLTE_VERBOSE_ISINFO()) {
|
|
printf("\n");
|
|
}
|
|
|
|
bzero(found_cells, 3 * sizeof(srslte_nbiot_ue_cellsearch_result_t));
|
|
|
|
if (srslte_ue_cellsearch_nbiot_init(&cs, cell_detect_config.max_frames_pss, srslte_rf_recv_wrapper, (void*)&rf)) {
|
|
fprintf(stderr, "Error initiating UE cell detect\n");
|
|
exit(-1);
|
|
}
|
|
|
|
if (cell_detect_config.max_frames_pss) {
|
|
srslte_ue_cellsearch_nbiot_set_nof_valid_frames(&cs, cell_detect_config.nof_valid_pss_frames);
|
|
}
|
|
if (cell_detect_config.init_agc) {
|
|
srslte_ue_sync_nbiot_start_agc(&cs.ue_sync, srslte_rf_set_rx_gain_wrapper, cell_detect_config.init_agc);
|
|
}
|
|
|
|
INFO("Setting sampling frequency %.2f MHz for NPSS search", SRSLTE_CS_SAMP_FREQ / 1000000);
|
|
srslte_rf_set_rx_srate(&rf, SRSLTE_CS_SAMP_FREQ);
|
|
INFO("Starting receiver...");
|
|
srslte_rf_start_rx_stream(&rf, false);
|
|
|
|
n = srslte_ue_cellsearch_nbiot_scan(&cs);
|
|
if (n == SRSLTE_SUCCESS) {
|
|
srslte_rf_stop_rx_stream(&rf);
|
|
n = srslte_ue_cellsearch_nbiot_detect(&cs, found_cells);
|
|
if (n == SRSLTE_SUCCESS) {
|
|
srslte_nbiot_cell_t cell;
|
|
cell.n_id_ncell = found_cells[0].n_id_ncell;
|
|
cell.base.cp = SRSLTE_CP_NORM;
|
|
|
|
// TODO: add MIB decoding
|
|
printf("Found CELL ID %d.\n", cell.n_id_ncell);
|
|
memcpy(&results[n_found_cells].cell, &cell, sizeof(srslte_nbiot_cell_t));
|
|
results[n_found_cells].freq = channels[freq].fd;
|
|
results[n_found_cells].dl_earfcn = channels[freq].id;
|
|
results[n_found_cells].power = found_cells[0].peak;
|
|
n_found_cells++;
|
|
} else {
|
|
printf("Cell found but couldn't detect ID.\n");
|
|
}
|
|
}
|
|
srslte_ue_cellsearch_nbiot_free(&cs);
|
|
}
|
|
}
|
|
|
|
printf("\n\nFound %d cells\n", n_found_cells);
|
|
for (int i = 0; i < n_found_cells; i++) {
|
|
printf("Found CELL %.1f MHz, EARFCN=%d, PHYID=%d, NPSS power=%.1f dBm\n",
|
|
results[i].freq,
|
|
results[i].dl_earfcn,
|
|
results[i].cell.n_id_ncell,
|
|
10 * log10(results[i].power));
|
|
}
|
|
|
|
printf("\nBye\n");
|
|
|
|
srslte_rf_close(&rf);
|
|
exit(0);
|
|
}
|