srsLTE/lib/include/srslte/phy/rf/rf_utils.h

56 lines
2.3 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
* Copyright 2013-2019 Software Radio Systems Limited
*
2019-04-26 12:27:38 -07:00
* This file is part of srsLTE.
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 08:05:40 -07:00
* 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.
*
* srsLTE 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
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
*
2015-05-08 08:05:40 -07:00
* 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 SRSLTE_RF_UTILS_H
2018-03-31 10:04:04 -07:00
#define SRSLTE_RF_UTILS_H
2017-05-18 00:48:24 -07:00
#include "srslte/phy/rf/rf.h"
#include "srslte/srslte.h"
typedef struct SRSLTE_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
2019-04-23 01:53:11 -07:00
float init_agc; // 0 or negative to disable AGC
bool force_tdd;
} cell_search_cfg_t;
SRSLTE_API int rf_rssi_scan(srslte_rf_t* rf, float* freqs, float* rssi, int nof_bands, double fs, int nsamp);
SRSLTE_API int
rf_mib_decoder(srslte_rf_t* rf, uint32_t nof_rx_antennas, cell_search_cfg_t* config, srslte_cell_t* cell, float* cfo);
SRSLTE_API int rf_cell_search(srslte_rf_t* rf,
uint32_t nof_rx_antennas,
cell_search_cfg_t* config,
int force_N_id_2,
srslte_cell_t* cell,
float* cfo);
SRSLTE_API int rf_search_and_decode_mib(srslte_rf_t* rf,
uint32_t nof_rx_antennas,
cell_search_cfg_t* config,
int force_N_id_2,
srslte_cell_t* cell,
float* cfo);
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_RF_UTILS_H