srsLTE/lib/include/srslte/phy/dft/ofdm.h

147 lines
4.7 KiB
C
Raw Normal View History

/**
2014-01-28 03:41:17 -08:00
*
* \section COPYRIGHT
2014-01-28 03:41:17 -08:00
*
2015-11-13 04:22:33 -08:00
* Copyright 2013-2015 Software Radio Systems Limited
*
* \section LICENSE
*
* This file is part of the srsLTE library.
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 08:05:40 -07:00
* 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,
2014-01-28 03:41:17 -08:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
2014-01-28 03:41:17 -08:00
*
2015-05-08 08:05:40 -07:00
* 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/.
*
2014-01-28 03:41:17 -08:00
*/
2014-01-28 03:41:17 -08:00
#ifndef LTEFFT_
#define LTEFFT_
/**********************************************************************************************
* File: ofdm.h
*
* Description: OFDM modulation object.
* Used in generation of downlink OFDM signals.
*
* Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 6
*********************************************************************************************/
2014-01-28 03:41:17 -08:00
#include <strings.h>
#include <stdlib.h>
#include "srslte/config.h"
2017-05-18 00:48:24 -07:00
#include "srslte/phy/common/phy_common.h"
#include "srslte/phy/dft/dft.h"
2014-01-28 03:41:17 -08:00
/* This is common for both directions */
typedef struct SRSLTE_API{
2015-03-18 05:41:50 -07:00
srslte_dft_plan_t fft_plan;
uint32_t max_prb;
uint32_t nof_symbols;
uint32_t symbol_sz;
uint32_t nof_guards;
uint32_t nof_re;
uint32_t slot_sz;
2015-03-18 05:41:50 -07:00
srslte_cp_t cp;
2014-06-17 02:11:41 -07:00
cf_t *tmp; // for removing zero padding
2017-09-21 03:48:09 -07:00
bool mbsfn_subframe;
uint32_t mbsfn_guard_len;
uint32_t nof_symbols_mbsfn;
uint8_t non_mbsfn_region;
bool freq_shift;
float freq_shift_f;
cf_t *shift_buffer;
2015-03-18 11:14:24 -07:00
}srslte_ofdm_t;
2014-01-28 03:41:17 -08:00
2015-09-25 13:44:36 -07:00
SRSLTE_API int srslte_ofdm_init_(srslte_ofdm_t *q,
srslte_cp_t cp,
int symbol_sz,
2017-09-21 03:48:09 -07:00
int nof_prb,
srslte_dft_dir_t dir);
SRSLTE_API int srslte_ofdm_init_mbsfn_(srslte_ofdm_t *q,
srslte_cp_t cp,
int symbol_sz,
int nof_prb,
srslte_dft_dir_t dir,
srslte_sf_t sf_type);
SRSLTE_API int srslte_ofdm_rx_init_mbsfn(srslte_ofdm_t *q,
srslte_cp_t cp_type,
uint32_t nof_prb);
2015-09-25 13:44:36 -07:00
2015-04-08 01:50:01 -07:00
SRSLTE_API int srslte_ofdm_rx_init(srslte_ofdm_t *q,
2015-03-18 05:41:50 -07:00
srslte_cp_t cp_type,
uint32_t max_prb);
SRSLTE_API int srslte_ofdm_tx_set_prb(srslte_ofdm_t *q,
srslte_cp_t cp,
uint32_t nof_prb);
SRSLTE_API int srslte_ofdm_rx_set_prb(srslte_ofdm_t *q,
srslte_cp_t cp,
uint32_t nof_prb);
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_rx_free(srslte_ofdm_t *q);
2014-01-28 03:41:17 -08:00
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_rx_slot(srslte_ofdm_t *q,
2015-03-18 05:41:50 -07:00
cf_t *input,
cf_t *output);
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_rx_sf(srslte_ofdm_t *q,
2015-03-18 05:41:50 -07:00
cf_t *input,
cf_t *output);
2015-04-08 01:50:01 -07:00
SRSLTE_API int srslte_ofdm_tx_init(srslte_ofdm_t *q,
2015-03-18 11:14:24 -07:00
srslte_cp_t cp_type,
uint32_t nof_prb);
2017-09-21 03:48:09 -07:00
SRSLTE_API int srslte_ofdm_tx_init_mbsfn(srslte_ofdm_t *q,
srslte_cp_t cp,
uint32_t nof_prb);
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_tx_free(srslte_ofdm_t *q);
2015-03-18 11:14:24 -07:00
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_tx_slot(srslte_ofdm_t *q,
cf_t *input,
cf_t *output);
2017-09-21 03:48:09 -07:00
SRSLTE_API void srslte_ofdm_tx_slot_mbsfn(srslte_ofdm_t *q,
cf_t *input,
cf_t *output);
2015-04-08 01:50:01 -07:00
SRSLTE_API void srslte_ofdm_tx_sf(srslte_ofdm_t *q,
cf_t *input,
cf_t *output);
2014-01-28 03:41:17 -08:00
2015-03-18 11:14:24 -07:00
SRSLTE_API int srslte_ofdm_set_freq_shift(srslte_ofdm_t *q,
2015-03-18 05:41:50 -07:00
float freq_shift);
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_ofdm_set_normalize(srslte_ofdm_t *q,
2015-03-18 05:41:50 -07:00
bool normalize_enable);
2015-03-11 09:42:36 -07:00
2017-09-21 03:48:09 -07:00
SRSLTE_API void srslte_ofdm_set_non_mbsfn_region(srslte_ofdm_t *q,
uint8_t non_mbsfn_region);
#endif