mirror of https://github.com/pvnis/srsRAN_4G.git
commit
b4e625eddd
@ -1,38 +0,0 @@
|
||||
#
|
||||
# Copyright 2012-2013 The libLTE Developers. See the
|
||||
# COPYRIGHT file at the top-level directory of this distribution.
|
||||
#
|
||||
# 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/.
|
||||
#
|
||||
|
||||
########################################################################
|
||||
# Add headers to cmake project (useful for IDEs)
|
||||
########################################################################
|
||||
SET(HEADERS_ALL "")
|
||||
FILE(GLOB_RECURSE tmp "*.h")
|
||||
LIST(APPEND HEADERS_ALL ${tmp})
|
||||
FILE(GLOB headers *)
|
||||
FOREACH (_header ${headers})
|
||||
IF(IS_DIRECTORY ${_header})
|
||||
FILE(GLOB_RECURSE tmp "${_header}/*.h")
|
||||
LIST(APPEND HEADERS_ALL ${tmp})
|
||||
ENDIF(IS_DIRECTORY ${_header})
|
||||
ENDFOREACH()
|
||||
ADD_CUSTOM_TARGET (add_cuhd_headers SOURCES ${HEADERS_ALL})
|
||||
|
||||
|
||||
|
@ -1,107 +0,0 @@
|
||||
/**
|
||||
*
|
||||
* \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_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "lte/config.h"
|
||||
|
||||
#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/cexptab.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/fec/tc_interl.h"
|
||||
#include "lte/fec/turbocoder.h"
|
||||
#include "lte/fec/turbodecoder.h"
|
||||
#include "lte/fec/rm_conv.h"
|
||||
#include "lte/fec/rm_turbo.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/regs.h"
|
||||
#include "lte/phch/dci.h"
|
||||
#include "lte/phch/pdcch.h"
|
||||
#include "lte/phch/pdsch.h"
|
||||
#include "lte/phch/pbch.h"
|
||||
#include "lte/phch/pcfich.h"
|
||||
#include "lte/phch/phich.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"
|
||||
#include "lte/sync/cfo.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
@ -0,0 +1,21 @@
|
||||
#
|
||||
# Copyright 2012-2013 The libLTE Developers. See the
|
||||
# COPYRIGHT file at the top-level directory of this distribution.
|
||||
#
|
||||
# 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/.
|
||||
#
|
||||
|
@ -0,0 +1,21 @@
|
||||
#
|
||||
# Copyright 2012-2013 The libLTE Developers. See the
|
||||
# COPYRIGHT file at the top-level directory of this distribution.
|
||||
#
|
||||
# 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/.
|
||||
#
|
||||
|
@ -0,0 +1,107 @@
|
||||
/**
|
||||
*
|
||||
* \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_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "liblte/config.h"
|
||||
|
||||
#include "liblte/phy/utils/bit.h"
|
||||
#include "liblte/phy/utils/convolution.h"
|
||||
#include "liblte/phy/utils/debug.h"
|
||||
#include "liblte/phy/utils/dft.h"
|
||||
#include "liblte/phy/utils/matrix.h"
|
||||
#include "liblte/phy/utils/mux.h"
|
||||
#include "liblte/phy/utils/cexptab.h"
|
||||
#include "liblte/phy/utils/pack.h"
|
||||
#include "liblte/phy/utils/vector.h"
|
||||
|
||||
#include "liblte/phy/common/base.h"
|
||||
#include "liblte/phy/common/fft.h"
|
||||
#include "liblte/phy/common/sequence.h"
|
||||
|
||||
#include "liblte/phy/ch_estimation/chest.h"
|
||||
#include "liblte/phy/ch_estimation/refsignal.h"
|
||||
|
||||
#include "liblte/phy/channel/ch_awgn.h"
|
||||
|
||||
#include "liblte/phy/fec/viterbi.h"
|
||||
#include "liblte/phy/fec/convcoder.h"
|
||||
#include "liblte/phy/fec/crc.h"
|
||||
#include "liblte/phy/fec/tc_interl.h"
|
||||
#include "liblte/phy/fec/turbocoder.h"
|
||||
#include "liblte/phy/fec/turbodecoder.h"
|
||||
#include "liblte/phy/fec/rm_conv.h"
|
||||
#include "liblte/phy/fec/rm_turbo.h"
|
||||
|
||||
#include "liblte/phy/filter/filter2d.h"
|
||||
|
||||
#include "liblte/phy/io/binsource.h"
|
||||
#include "liblte/phy/io/filesink.h"
|
||||
#include "liblte/phy/io/filesource.h"
|
||||
#include "liblte/phy/io/udpsink.h"
|
||||
#include "liblte/phy/io/udpsource.h"
|
||||
|
||||
#include "liblte/phy/modem/demod_hard.h"
|
||||
#include "liblte/phy/modem/demod_soft.h"
|
||||
#include "liblte/phy/modem/mod.h"
|
||||
#include "liblte/phy/modem/modem_table.h"
|
||||
|
||||
#include "liblte/phy/mimo/precoding.h"
|
||||
#include "liblte/phy/mimo/layermap.h"
|
||||
|
||||
#include "liblte/phy/phch/regs.h"
|
||||
#include "liblte/phy/phch/dci.h"
|
||||
#include "liblte/phy/phch/pdcch.h"
|
||||
#include "liblte/phy/phch/pdsch.h"
|
||||
#include "liblte/phy/phch/pbch.h"
|
||||
#include "liblte/phy/phch/pcfich.h"
|
||||
#include "liblte/phy/phch/phich.h"
|
||||
|
||||
#include "liblte/phy/scrambling/scrambling.h"
|
||||
|
||||
#include "liblte/phy/resampling/interp.h"
|
||||
|
||||
#include "liblte/phy/sync/pss.h"
|
||||
#include "liblte/phy/sync/sfo.h"
|
||||
#include "liblte/phy/sync/sss.h"
|
||||
#include "liblte/phy/sync/sync.h"
|
||||
#include "liblte/phy/sync/cfo.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue