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.
71 lines
1.7 KiB
C
71 lines
1.7 KiB
C
4 years ago
|
/**
|
||
5 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
5 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
5 years ago
|
*
|
||
4 years ago
|
* 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.
|
||
5 years ago
|
*
|
||
|
*/
|
||
|
|
||
|
/******************************************************************************
|
||
|
* File: psss.h
|
||
|
*
|
||
|
* Description: Primary sidelink synchronization signal (PSSS) generation and detection.
|
||
|
*
|
||
|
*
|
||
|
* Reference: 3GPP TS 36.211 version 15.6.0 Release 15 Sec. 9.7.1
|
||
|
*****************************************************************************/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_PSSS_H
|
||
|
#define SRSRAN_PSSS_H
|
||
5 years ago
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
4 years ago
|
#include "srsran/config.h"
|
||
|
#include "srsran/phy/common/phy_common.h"
|
||
|
#include "srsran/phy/dft/dft.h"
|
||
5 years ago
|
|
||
4 years ago
|
#define SRSRAN_PSSS_LEN 62
|
||
5 years ago
|
|
||
4 years ago
|
typedef struct SRSRAN_API {
|
||
5 years ago
|
|
||
4 years ago
|
cf_t psss_signal[2][SRSRAN_PSSS_LEN]; // One sequence for each N_id_2
|
||
5 years ago
|
|
||
|
cf_t** psss_sf_freq;
|
||
|
|
||
|
cf_t* input_pad_freq;
|
||
|
cf_t* input_pad_time;
|
||
|
|
||
|
cf_t* dot_prod_output;
|
||
|
cf_t* dot_prod_output_time;
|
||
|
|
||
|
cf_t* shifted_output;
|
||
|
|
||
|
float* shifted_output_abs;
|
||
|
|
||
|
int32_t corr_peak_pos;
|
||
|
float corr_peak_value;
|
||
|
|
||
|
uint32_t N_id_2;
|
||
|
|
||
4 years ago
|
srsran_dft_plan_t plan_input;
|
||
|
srsran_dft_plan_t plan_out;
|
||
5 years ago
|
|
||
4 years ago
|
} srsran_psss_t;
|
||
5 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_psss_init(srsran_psss_t* q, uint32_t nof_prb, srsran_cp_t cp);
|
||
5 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_psss_generate(cf_t* psss_signal, uint32_t N_id_2);
|
||
5 years ago
|
|
||
4 years ago
|
SRSRAN_API void srsran_psss_put_sf_buffer(cf_t* psss_signal, cf_t* sf_buffer, uint32_t nof_prb, srsran_cp_t cp);
|
||
5 years ago
|
|
||
4 years ago
|
SRSRAN_API int srsran_psss_find(srsran_psss_t* q, cf_t* input, uint32_t nof_prb, srsran_cp_t cp);
|
||
5 years ago
|
|
||
4 years ago
|
SRSRAN_API void srsran_psss_free(srsran_psss_t* q);
|
||
5 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_PSSS_H
|