srsLTE/lib/include/srslte/phy/utils/cexptab.h

44 lines
1.1 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
* Copyright 2013-2020 Software Radio Systems Limited
2014-01-28 03:41:17 -08:00
*
* 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.
*
2014-01-28 03:41:17 -08:00
*/
/******************************************************************************
* File: cexptab.h
*
* Description: Utility module for generation of complex exponential tables.
*
* Reference:
*****************************************************************************/
2018-03-31 10:04:04 -07:00
#ifndef SRSLTE_CEXPTAB_H
#define SRSLTE_CEXPTAB_H
2014-01-28 03:41:17 -08:00
#include "srslte/config.h"
2014-01-28 03:41:17 -08:00
#include <complex.h>
#include <stdint.h>
2014-01-28 03:41:17 -08:00
typedef struct SRSLTE_API {
uint32_t size;
cf_t* tab;
} srslte_cexptab_t;
2014-03-03 15:54:02 -08:00
SRSLTE_API int srslte_cexptab_init(srslte_cexptab_t* nco, uint32_t size);
SRSLTE_API void srslte_cexptab_free(srslte_cexptab_t* nco);
2014-03-03 15:54:02 -08:00
SRSLTE_API void srslte_cexptab_gen(srslte_cexptab_t* nco, cf_t* x, float freq, uint32_t len);
2014-01-28 03:41:17 -08:00
SRSLTE_API void srslte_cexptab_gen_direct(cf_t* x, float freq, uint32_t len);
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_cexptab_gen_sf(cf_t* x, float freq, uint32_t fft_size);
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_CEXPTAB_H