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

66 lines
2.4 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2015-11-13 12:22:33 +00:00
* Copyright 2013-2015 Software Radio Systems Limited
*
* \section LICENSE
*
* This file is part of the srsLTE library.
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 15:05:40 +00: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 15:05:40 +00:00
* GNU Affero General Public License for more details.
*
2015-05-08 15:05:40 +00: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/.
*
*/
#include "srslte/srslte.h"
2017-05-18 07:48:24 +00:00
#include "srslte/phy/rf/rf.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
float init_agc; // 0 or negative to disable AGC
} cell_search_cfg_t;
2015-12-16 17:02:25 +00:00
SRSLTE_API int rf_rssi_scan(srslte_rf_t *rf,
float *freqs,
float *rssi,
int nof_bands,
double fs,
int nsamp);
2015-12-16 17:02:25 +00:00
SRSLTE_API int rf_mib_decoder(srslte_rf_t *rf,
2017-02-13 12:29:20 +00:00
uint32_t nof_rx_antennas,
cell_search_cfg_t *config,
srslte_cell_t *cell,
float *cfo);
2015-12-16 17:02:25 +00:00
SRSLTE_API int rf_cell_search(srslte_rf_t *rf,
2017-02-13 12:29:20 +00:00
uint32_t nof_rx_antennas,
cell_search_cfg_t *config,
int force_N_id_2,
srslte_cell_t *cell,
float *cfo);
2015-12-16 17:02:25 +00:00
SRSLTE_API int rf_search_and_decode_mib(srslte_rf_t *rf,
2017-02-13 12:29:20 +00:00
uint32_t nof_rx_antennas,
cell_search_cfg_t *config,
int force_N_id_2,
srslte_cell_t *cell,
float *cfo);