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.
58 lines
2.4 KiB
C
58 lines
2.4 KiB
C
/**
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsRAN 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 Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero 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/.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSRAN_RF_UTILS_H
|
|
#define SRSRAN_RF_UTILS_H
|
|
|
|
#include "srsran/phy/rf/rf.h"
|
|
#include "srsran/srsran.h"
|
|
|
|
typedef struct SRSRAN_API {
|
|
uint32_t max_frames_pbch; // timeout in number of 5ms frames for MIB decoding
|
|
uint32_t max_frames_pss; // timeout in number of 5ms frames for synchronization
|
|
uint32_t nof_valid_pss_frames; // number of required synchronized frames
|
|
float init_agc; // 0 or negative to disable AGC
|
|
bool force_tdd;
|
|
} cell_search_cfg_t;
|
|
|
|
SRSRAN_API int rf_rssi_scan(srsran_rf_t* rf, float* freqs, float* rssi, int nof_bands, double fs, int nsamp);
|
|
|
|
SRSRAN_API int
|
|
rf_mib_decoder(srsran_rf_t* rf, uint32_t nof_rf_channels, cell_search_cfg_t* config, srsran_cell_t* cell, float* cfo);
|
|
|
|
SRSRAN_API int rf_cell_search(srsran_rf_t* rf,
|
|
uint32_t nof_rf_channels,
|
|
cell_search_cfg_t* config,
|
|
int force_N_id_2,
|
|
srsran_cell_t* cell,
|
|
float* cfo);
|
|
|
|
SRSRAN_API int rf_search_and_decode_mib(srsran_rf_t* rf,
|
|
uint32_t nof_rf_channels,
|
|
cell_search_cfg_t* config,
|
|
int force_N_id_2,
|
|
srsran_cell_t* cell,
|
|
float* cfo);
|
|
|
|
SRSRAN_API int rf_cell_search_nbiot(srsran_rf_t* rf, cell_search_cfg_t* config, srsran_nbiot_cell_t* cell, float* cfo);
|
|
|
|
#endif // SRSRAN_RF_UTILS_H
|