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.
91 lines
2.7 KiB
C++
91 lines
2.7 KiB
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2015 Software Radio Systems Limited
|
|
*
|
|
* \section LICENSE
|
|
*
|
|
* This file is part of the srsUE library.
|
|
*
|
|
* srsUE 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.
|
|
*
|
|
* srsUE 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_PRACH_H
|
|
#define SRSUE_PRACH_H
|
|
|
|
#include <string.h>
|
|
|
|
#include "srslte/srslte.h"
|
|
#include "srslte/radio/radio.h"
|
|
#include "srslte/common/log.h"
|
|
#include "srslte/interfaces/ue_interfaces.h"
|
|
|
|
namespace srsue {
|
|
|
|
class prach {
|
|
public:
|
|
prach() {
|
|
bzero(&prach_obj, sizeof(srslte_prach_t));
|
|
bzero(&cell, sizeof(srslte_cell_t));
|
|
bzero(&cfo_h, sizeof(srslte_cfo_t));
|
|
|
|
args = NULL;
|
|
config = NULL;
|
|
transmitted_tti = 0;
|
|
target_power_dbm = 0;
|
|
mem_initiated = false;
|
|
cell_initiated = false;
|
|
signal_buffer = NULL;
|
|
}
|
|
~prach();
|
|
void init(LIBLTE_RRC_PRACH_CONFIG_SIB_STRUCT *config, uint32_t max_prb, phy_args_t *args, srslte::log *log_h);
|
|
bool set_cell(srslte_cell_t cell);
|
|
bool prepare_to_send(uint32_t preamble_idx, int allowed_subframe = -1, float target_power_dbm = -1);
|
|
bool is_ready_to_send(uint32_t current_tti);
|
|
bool is_pending();
|
|
int tx_tti();
|
|
|
|
void send(srslte::radio* radio_handler, float cfo, float pathloss, srslte_timestamp_t rx_time);
|
|
float get_p0_preamble();
|
|
|
|
static const uint32_t tx_advance_sf = 4; // Number of subframes to advance transmission
|
|
|
|
private:
|
|
|
|
LIBLTE_RRC_PRACH_CONFIG_SIB_STRUCT *config;
|
|
phy_args_t *args;
|
|
|
|
srslte::log *log_h;
|
|
int preamble_idx;
|
|
int allowed_subframe;
|
|
bool mem_initiated;
|
|
bool cell_initiated;
|
|
uint32_t len;
|
|
cf_t *buffer[64];
|
|
srslte_prach_t prach_obj;
|
|
int transmitted_tti;
|
|
srslte_cell_t cell;
|
|
cf_t *signal_buffer;
|
|
srslte_cfo_t cfo_h;
|
|
float target_power_dbm;
|
|
|
|
};
|
|
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_PRACH_H
|