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.
72 lines
2.7 KiB
C
72 lines
2.7 KiB
C
5 years ago
|
/*
|
||
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||
|
*
|
||
|
* This file is part of srsLTE.
|
||
|
*
|
||
|
* srsLTE 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.
|
||
|
*
|
||
|
* 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
|
||
|
* 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 SRSUE_SFN_SYNC_H
|
||
|
#define SRSUE_SFN_SYNC_H
|
||
|
|
||
|
#include "srslte/interfaces/ue_interfaces.h"
|
||
|
#include "srslte/radio/radio.h"
|
||
|
#include "srslte/srslte.h"
|
||
|
|
||
|
namespace srsue {
|
||
|
|
||
|
// Class to synchronize system frame number
|
||
|
class sfn_sync
|
||
|
{
|
||
|
public:
|
||
|
typedef enum { IDLE, SFN_FOUND, SFX0_FOUND, SFN_NOFOUND, ERROR } ret_code;
|
||
|
sfn_sync() = default;
|
||
|
~sfn_sync();
|
||
|
void init(srslte_ue_sync_t* ue_sync,
|
||
|
const phy_args_t* phy_args_,
|
||
|
srslte::rf_buffer_t& buffer,
|
||
|
uint32_t buffer_max_samples_,
|
||
|
srslte::log* log_h,
|
||
|
uint32_t nof_subframes = SFN_SYNC_NOF_SUBFRAMES);
|
||
|
void reset();
|
||
|
bool set_cell(srslte_cell_t cell);
|
||
|
ret_code run_subframe(srslte_cell_t* cell,
|
||
|
uint32_t* tti_cnt,
|
||
|
std::array<uint8_t, SRSLTE_BCH_PAYLOAD_LEN>& bch_payload,
|
||
|
bool sfidx_only = false);
|
||
|
ret_code decode_mib(srslte_cell_t* cell,
|
||
|
uint32_t* tti_cnt,
|
||
|
srslte::rf_buffer_t* ext_buffer,
|
||
|
std::array<uint8_t, SRSLTE_BCH_PAYLOAD_LEN>& bch_payload,
|
||
|
bool sfidx_only = false);
|
||
|
|
||
|
private:
|
||
|
const static int SFN_SYNC_NOF_SUBFRAMES = 100;
|
||
|
|
||
|
const phy_args_t* phy_args = nullptr;
|
||
|
uint32_t cnt = 0;
|
||
|
uint32_t timeout = 0;
|
||
|
srslte::log* log_h = nullptr;
|
||
|
srslte_ue_sync_t* ue_sync = nullptr;
|
||
|
srslte::rf_buffer_t mib_buffer = {};
|
||
|
uint32_t buffer_max_samples = 0;
|
||
|
srslte_ue_mib_t ue_mib = {};
|
||
|
};
|
||
|
|
||
|
}; // namespace srsue
|
||
|
|
||
|
#endif // SRSUE_SFN_SYNC_H
|