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

49 lines
1.9 KiB
C
Raw Normal View History

/**
*
* \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.
*
*/
#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_rf_channels, cell_search_cfg_t* config, srslte_cell_t* cell, float* cfo);
SRSLTE_API int rf_cell_search(srslte_rf_t* rf,
uint32_t nof_rf_channels,
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_rf_channels,
cell_search_cfg_t* config,
int force_N_id_2,
srslte_cell_t* cell,
float* cfo);
2020-01-20 09:27:34 -08:00
SRSLTE_API int rf_cell_search_nbiot(srslte_rf_t* rf, cell_search_cfg_t* config, srslte_nbiot_cell_t* cell, float* cfo);
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_RF_UTILS_H