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.
69 lines
2.4 KiB
C
69 lines
2.4 KiB
C
/**
|
|
* Copyright 2013-2023 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN 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.
|
|
*
|
|
* srsRAN 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 SRSRAN_PSS_NR_H
|
|
#define SRSRAN_PSS_NR_H
|
|
|
|
#include "srsran/config.h"
|
|
#include "srsran/phy/common/phy_common_nr.h"
|
|
#include <inttypes.h>
|
|
|
|
/**
|
|
* @brief NR PSS sequence length in frequency domain
|
|
*/
|
|
#define SRSRAN_PSS_NR_LEN 127
|
|
|
|
/**
|
|
* @brief NR PSS Symbol number
|
|
*/
|
|
#define SRSRAN_PSS_NR_SYMBOL_IDX 0
|
|
|
|
/**
|
|
* @brief Put NR PSS sequence in the SSB grid
|
|
* @remark Described in TS 38.211 section 7.4.2.2 Primary synchronization signal
|
|
* @param ssb_grid SSB resource grid
|
|
* @param N_id_2 Physical cell ID 2
|
|
* @param beta PSS power allocation
|
|
* @return SRSRAN_SUCCESS if the parameters are valid, SRSRAN_ERROR code otherwise
|
|
*/
|
|
SRSRAN_API int srsran_pss_nr_put(cf_t ssb_grid[SRSRAN_SSB_NOF_RE], uint32_t N_id_2, float beta);
|
|
|
|
/**
|
|
* @brief Extracts the NR PSS Least Square Estimates (LSE) from the SSB grid
|
|
* @param ssb_grid received SSB resource grid
|
|
* @param N_id_2 Physical cell ID 2
|
|
* @param lse Provides LSE pointer
|
|
* @return SRSRAN_SUCCESS if the parameters are valid, SRSRAN_ERROR code otherwise
|
|
*/
|
|
SRSRAN_API int srsran_pss_nr_extract_lse(const cf_t* ssb_grid, uint32_t N_id_2, cf_t lse[SRSRAN_PSS_NR_LEN]);
|
|
|
|
/**
|
|
* @brief Find the best PSS sequence given the SSB resource grid
|
|
* @attention Assumes the SSB is synchronized and the average delay is pre-compensated
|
|
* @param ssb_grid The SSB resource grid to search
|
|
* @param norm_corr Normalised correlation of the best found sequence
|
|
* @param found_N_id_2 The N_id_2 of the best sequence
|
|
* @return SRSRAN_SUCCESS if the parameters are valid, SRSRAN_ERROR code otherwise
|
|
*/
|
|
SRSRAN_API int srsran_pss_nr_find(const cf_t ssb_grid[SRSRAN_SSB_NOF_RE], float* norm_corr, uint32_t* found_N_id_2);
|
|
|
|
#endif // SRSRAN_PSS_NR_H
|