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.
89 lines
2.1 KiB
C
89 lines
2.1 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2014 The libLTE Developers. See the
|
|
* COPYRIGHT file at the top-level directory of this distribution.
|
|
*
|
|
* \section LICENSE
|
|
*
|
|
* This file is part of the libLTE library.
|
|
*
|
|
* libLTE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* libLTE 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 Lesser General Public License for more details.
|
|
*
|
|
* A copy of the GNU Lesser 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/.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <complex.h>
|
|
#include <math.h>
|
|
|
|
#ifndef _LTE_
|
|
#define _LTE_
|
|
|
|
#include "lte/utils/bit.h"
|
|
#include "lte/utils/convolution.h"
|
|
#include "lte/utils/debug.h"
|
|
#include "lte/utils/dft.h"
|
|
#include "lte/utils/matrix.h"
|
|
#include "lte/utils/mux.h"
|
|
#include "lte/utils/nco.h"
|
|
#include "lte/utils/pack.h"
|
|
#include "lte/utils/vector.h"
|
|
|
|
#include "lte/common/base.h"
|
|
#include "lte/common/fft.h"
|
|
#include "lte/common/sequence.h"
|
|
|
|
#include "lte/ch_estimation/chest.h"
|
|
#include "lte/ch_estimation/refsignal.h"
|
|
|
|
#include "lte/channel/ch_awgn.h"
|
|
|
|
#include "lte/fec/viterbi.h"
|
|
#include "lte/fec/convcoder.h"
|
|
#include "lte/fec/crc.h"
|
|
|
|
#include "lte/filter/filter2d.h"
|
|
|
|
#include "lte/io/binsource.h"
|
|
#include "lte/io/filesink.h"
|
|
#include "lte/io/filesource.h"
|
|
#include "lte/io/udpsink.h"
|
|
#include "lte/io/udpsource.h"
|
|
|
|
#include "lte/modem/demod_hard.h"
|
|
#include "lte/modem/demod_soft.h"
|
|
#include "lte/modem/mod.h"
|
|
#include "lte/modem/modem_table.h"
|
|
|
|
#include "lte/mimo/precoding.h"
|
|
#include "lte/mimo/layermap.h"
|
|
|
|
#include "lte/phch/pbch.h"
|
|
|
|
#include "lte/ratematching/rm_conv.h"
|
|
|
|
#include "lte/scrambling/scrambling.h"
|
|
|
|
#include "lte/resampling/interp.h"
|
|
|
|
#include "lte/sync/pss.h"
|
|
#include "lte/sync/sfo.h"
|
|
#include "lte/sync/sss.h"
|
|
#include "lte/sync/sync.h"
|
|
|
|
|
|
#endif
|