From 205db6f229c3e81091b5a14bd9af1662b59df5fb Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 26 Apr 2019 17:20:30 +0200 Subject: [PATCH 1/5] add missing license headers --- cmake/modules/CheckFunctionExists.c | 21 +++++++++++++++++++++ lib/include/srslte/common/s1ap_pcap.h | 21 +++++++++++++++++++++ lib/src/common/nas_pcap.cc | 22 +++++++++++++++++++++- lib/src/common/s1ap_pcap.cc | 21 +++++++++++++++++++++ lib/src/phy/rf/uhd_c_api.cpp | 21 ++++++++++++++++++++- lib/src/phy/utils/ringbuffer.c | 20 ++++++++++++++++++++ lib/test/common/test_eea1.cc | 19 ++++++++++++++++++- lib/test/common/test_eea2.cc | 19 ++++++++++++++++++- lib/test/common/test_eia1.cc | 19 ++++++++++++++++++- lib/test/common/test_f12345.cc | 19 ++++++++++++++++++- srsenb/hdr/CMakeLists.txt | 5 ----- srsenb/src/CMakeLists.txt | 19 +++++++++++++++++++ srsenb/test/CMakeLists.txt | 21 ++++++++++++++++++++- srsenb/test/mac/CMakeLists.txt | 19 +++++++++++++++++++ srsenb/test/upper/CMakeLists.txt | 20 ++++++++++++++++++++ srsepc/hdr/CMakeLists.txt | 5 ----- srsepc/hdr/mme/nas.h | 1 + srsepc/hdr/mme/s1ap_common.h | 1 + 18 files changed, 276 insertions(+), 17 deletions(-) delete mode 100644 srsenb/hdr/CMakeLists.txt delete mode 100644 srsepc/hdr/CMakeLists.txt diff --git a/cmake/modules/CheckFunctionExists.c b/cmake/modules/CheckFunctionExists.c index 314263dbf..5877a6ab9 100644 --- a/cmake/modules/CheckFunctionExists.c +++ b/cmake/modules/CheckFunctionExists.c @@ -1,3 +1,24 @@ +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ + #ifdef CHECK_FUNCTION_EXISTS char CHECK_FUNCTION_EXISTS(); diff --git a/lib/include/srslte/common/s1ap_pcap.h b/lib/include/srslte/common/s1ap_pcap.h index b00d44394..daf3ba67f 100644 --- a/lib/include/srslte/common/s1ap_pcap.h +++ b/lib/include/srslte/common/s1ap_pcap.h @@ -1,3 +1,24 @@ +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ + #ifndef SRSLTE_S1AP_PCAP_H #define SRSLTE_S1AP_PCAP_H diff --git a/lib/src/common/nas_pcap.cc b/lib/src/common/nas_pcap.cc index 94e2cd9b0..3499824f9 100644 --- a/lib/src/common/nas_pcap.cc +++ b/lib/src/common/nas_pcap.cc @@ -1,9 +1,29 @@ +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ + #include #include "srslte/srslte.h" #include "srslte/common/pcap.h" #include "srslte/common/nas_pcap.h" - namespace srslte { void nas_pcap::enable() diff --git a/lib/src/common/s1ap_pcap.cc b/lib/src/common/s1ap_pcap.cc index 5b32be7f1..d3451b80f 100644 --- a/lib/src/common/s1ap_pcap.cc +++ b/lib/src/common/s1ap_pcap.cc @@ -1,3 +1,24 @@ +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ + #include #include "srslte/srslte.h" #include "srslte/common/pcap.h" diff --git a/lib/src/phy/rf/uhd_c_api.cpp b/lib/src/phy/rf/uhd_c_api.cpp index d98c3c92a..36e2b9fd3 100644 --- a/lib/src/phy/rf/uhd_c_api.cpp +++ b/lib/src/phy/rf/uhd_c_api.cpp @@ -1,4 +1,23 @@ - +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ /* This file implements a few features not currently provided by the UHD C-API */ #include diff --git a/lib/src/phy/utils/ringbuffer.c b/lib/src/phy/utils/ringbuffer.c index 8f8ab4563..9440edf5d 100644 --- a/lib/src/phy/utils/ringbuffer.c +++ b/lib/src/phy/utils/ringbuffer.c @@ -1,3 +1,23 @@ +/* + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include #include diff --git a/lib/test/common/test_eea1.cc b/lib/test/common/test_eea1.cc index 2b61ddc2d..eea7ee1ef 100644 --- a/lib/test/common/test_eea1.cc +++ b/lib/test/common/test_eea1.cc @@ -1,5 +1,22 @@ /* - * Includes + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ #include diff --git a/lib/test/common/test_eea2.cc b/lib/test/common/test_eea2.cc index d2e8c95cc..c5bb6fa8c 100644 --- a/lib/test/common/test_eea2.cc +++ b/lib/test/common/test_eea2.cc @@ -1,5 +1,22 @@ /* - * Includes + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ #include diff --git a/lib/test/common/test_eia1.cc b/lib/test/common/test_eia1.cc index 6c532a9d3..c72c86cee 100644 --- a/lib/test/common/test_eia1.cc +++ b/lib/test/common/test_eia1.cc @@ -1,5 +1,22 @@ /* - * Includes + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ #include diff --git a/lib/test/common/test_f12345.cc b/lib/test/common/test_f12345.cc index e75d80bd7..82f878862 100644 --- a/lib/test/common/test_f12345.cc +++ b/lib/test/common/test_f12345.cc @@ -1,5 +1,22 @@ /* - * Includes + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ #include diff --git a/srsenb/hdr/CMakeLists.txt b/srsenb/hdr/CMakeLists.txt deleted file mode 100644 index 83b16737b..000000000 --- a/srsenb/hdr/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ - -configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/version.h.in - ${PROJECT_BINARY_DIR}/version.h -) diff --git a/srsenb/src/CMakeLists.txt b/srsenb/src/CMakeLists.txt index a9aa61957..04514f80e 100644 --- a/srsenb/src/CMakeLists.txt +++ b/srsenb/src/CMakeLists.txt @@ -1,3 +1,22 @@ +# +# Copyright 2013-2017 Software Radio Systems Limited +# +# This file is part of srsLTE +# +# srsLTE is free software: you can redistribute it and/or modify +# 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, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# 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/. +# add_subdirectory(phy) add_subdirectory(mac) diff --git a/srsenb/test/CMakeLists.txt b/srsenb/test/CMakeLists.txt index 6a86702b2..d14805441 100644 --- a/srsenb/test/CMakeLists.txt +++ b/srsenb/test/CMakeLists.txt @@ -1,3 +1,22 @@ +# +# Copyright 2013-2017 Software Radio Systems Limited +# +# This file is part of srsLTE +# +# srsLTE is free software: you can redistribute it and/or modify +# 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, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# 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/. +# add_subdirectory(mac) -add_subdirectory(upper) \ No newline at end of file +add_subdirectory(upper) diff --git a/srsenb/test/mac/CMakeLists.txt b/srsenb/test/mac/CMakeLists.txt index 8d89c277e..79b0f2040 100644 --- a/srsenb/test/mac/CMakeLists.txt +++ b/srsenb/test/mac/CMakeLists.txt @@ -1,3 +1,22 @@ +# +# Copyright 2013-2017 Software Radio Systems Limited +# +# This file is part of srsLTE +# +# srsLTE is free software: you can redistribute it and/or modify +# 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, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# 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/. +# # Scheduler test add_executable(scheduler_test scheduler_test.cc) diff --git a/srsenb/test/upper/CMakeLists.txt b/srsenb/test/upper/CMakeLists.txt index f04fe27c0..cd3318703 100644 --- a/srsenb/test/upper/CMakeLists.txt +++ b/srsenb/test/upper/CMakeLists.txt @@ -1,3 +1,23 @@ +# +# Copyright 2013-2017 Software Radio Systems Limited +# +# This file is part of srsLTE +# +# srsLTE is free software: you can redistribute it and/or modify +# 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, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# 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/. +# + # Simple PLMN -> MCC/MNC test add_executable(plmn_test plmn_test.cc) target_link_libraries(plmn_test rrc_asn1) diff --git a/srsepc/hdr/CMakeLists.txt b/srsepc/hdr/CMakeLists.txt deleted file mode 100644 index 093086b96..000000000 --- a/srsepc/hdr/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/version.h.in - ${PROJECT_BINARY_DIR}/version.h -) - diff --git a/srsepc/hdr/mme/nas.h b/srsepc/hdr/mme/nas.h index 74c8752dd..1aa0711ef 100644 --- a/srsepc/hdr/mme/nas.h +++ b/srsepc/hdr/mme/nas.h @@ -18,6 +18,7 @@ * and at http://www.gnu.org/licenses/. * */ + #ifndef SRSEPC_NAS_H #define SRSEPC_NAS_H diff --git a/srsepc/hdr/mme/s1ap_common.h b/srsepc/hdr/mme/s1ap_common.h index 8f9f451e0..88ed44211 100644 --- a/srsepc/hdr/mme/s1ap_common.h +++ b/srsepc/hdr/mme/s1ap_common.h @@ -18,6 +18,7 @@ * and at http://www.gnu.org/licenses/. * */ + #ifndef SRSEPC_S1AP_COMMON_H #define SRSEPC_S1AP_COMMON_H From 4b01a2e4a019155a16e97c6ce1ce5a6540fc9793 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 26 Apr 2019 21:27:38 +0200 Subject: [PATCH 2/5] update copyright notice --- CMakeLists.txt | 4 +- cmake/modules/SRSLTEVersion.cmake | 7 ++-- lib/CMakeLists.txt | 4 +- lib/examples/CMakeLists.txt | 4 +- lib/examples/cell_search.c | 11 ++---- lib/examples/pdsch_enodeb.c | 11 ++---- lib/examples/pdsch_ue.c | 11 ++---- lib/examples/synch_file.c | 11 ++---- lib/examples/usrp_capture.c | 11 ++---- lib/examples/usrp_capture_sync.c | 11 ++---- lib/examples/usrp_txrx.c | 12 ++---- lib/include/CMakeLists.txt | 4 +- lib/include/srslte/CMakeLists.txt | 4 +- lib/include/srslte/asn1/asn1_utils.h | 37 ++++++++++--------- lib/include/srslte/asn1/gtpc.h | 11 ++---- lib/include/srslte/asn1/gtpc_ies.h | 11 ++---- lib/include/srslte/asn1/gtpc_msg.h | 11 ++---- lib/include/srslte/asn1/liblte_m2ap.h | 21 +++++++++-- lib/include/srslte/asn1/liblte_s1ap.h | 23 ++++++++++-- lib/include/srslte/asn1/rrc_asn1.h | 37 ++++++++++--------- lib/include/srslte/build_info.h.in | 12 ++---- lib/include/srslte/common/bcd_helpers.h | 15 +++----- lib/include/srslte/common/block_queue.h | 16 +++----- lib/include/srslte/common/buffer_pool.h | 15 +++----- lib/include/srslte/common/common.h | 15 +++----- lib/include/srslte/common/config_file.h | 15 +++----- lib/include/srslte/common/crash_handler.h | 11 ++---- lib/include/srslte/common/gen_mch_tables.h | 15 +++----- lib/include/srslte/common/int_helpers.h | 15 +++----- lib/include/srslte/common/interfaces_common.h | 13 ++----- lib/include/srslte/common/log.h | 15 +++----- lib/include/srslte/common/log_filter.h | 15 +++----- lib/include/srslte/common/logger.h | 15 +++----- lib/include/srslte/common/logger_file.h | 15 +++----- lib/include/srslte/common/logger_stdout.h | 15 +++----- lib/include/srslte/common/mac_pcap.h | 15 +++----- lib/include/srslte/common/pcap.h | 15 +++----- lib/include/srslte/common/pdu.h | 15 +++----- lib/include/srslte/common/pdu_queue.h | 15 +++----- lib/include/srslte/common/rlc_pcap.h | 15 +++----- lib/include/srslte/common/security.h | 15 +++----- lib/include/srslte/common/task_dispatcher.h | 15 +++----- lib/include/srslte/common/thread_pool.h | 15 +++----- lib/include/srslte/common/threads.h | 16 +++----- lib/include/srslte/common/timeout.h | 15 +++----- lib/include/srslte/common/timers.h | 16 +++----- lib/include/srslte/common/trace.h | 15 +++----- lib/include/srslte/common/tti_sync.h | 15 +++----- lib/include/srslte/common/tti_sync_cv.h | 15 +++----- lib/include/srslte/config.h | 11 ++---- .../srslte/interfaces/enb_interfaces.h | 13 ++----- .../srslte/interfaces/enb_metrics_interface.h | 13 ++----- .../srslte/interfaces/epc_interfaces.h | 2 +- .../srslte/interfaces/sched_interface.h | 13 ++----- lib/include/srslte/interfaces/ue_interfaces.h | 15 +++----- lib/include/srslte/phy/agc/agc.h | 11 ++---- .../srslte/phy/ch_estimation/chest_common.h | 11 ++---- .../srslte/phy/ch_estimation/chest_dl.h | 11 ++---- .../srslte/phy/ch_estimation/chest_ul.h | 11 ++---- .../srslte/phy/ch_estimation/refsignal_dl.h | 11 ++---- .../srslte/phy/ch_estimation/refsignal_ul.h | 11 ++---- lib/include/srslte/phy/channel/ch_awgn.h | 11 ++---- lib/include/srslte/phy/common/phy_common.h | 11 ++---- lib/include/srslte/phy/common/sequence.h | 11 ++---- lib/include/srslte/phy/common/timestamp.h | 11 ++---- lib/include/srslte/phy/dft/dft.h | 12 ++---- lib/include/srslte/phy/dft/dft_precoding.h | 11 ++---- lib/include/srslte/phy/dft/ofdm.h | 12 ++---- lib/include/srslte/phy/enb/enb_dl.h | 11 ++---- lib/include/srslte/phy/enb/enb_ul.h | 11 ++---- lib/include/srslte/phy/fec/cbsegm.h | 11 ++---- lib/include/srslte/phy/fec/convcoder.h | 11 ++---- lib/include/srslte/phy/fec/crc.h | 11 ++---- lib/include/srslte/phy/fec/rm_conv.h | 11 ++---- lib/include/srslte/phy/fec/rm_turbo.h | 11 ++---- lib/include/srslte/phy/fec/softbuffer.h | 11 ++---- lib/include/srslte/phy/fec/tc_interl.h | 11 ++---- lib/include/srslte/phy/fec/turbocoder.h | 11 ++---- lib/include/srslte/phy/fec/turbodecoder.h | 11 ++---- lib/include/srslte/phy/fec/turbodecoder_gen.h | 11 ++---- .../srslte/phy/fec/turbodecoder_impl.h | 11 ++---- .../srslte/phy/fec/turbodecoder_iter.h | 11 ++---- lib/include/srslte/phy/fec/turbodecoder_sse.h | 11 ++---- lib/include/srslte/phy/fec/turbodecoder_win.h | 11 ++---- lib/include/srslte/phy/fec/viterbi.h | 11 ++---- lib/include/srslte/phy/io/binsource.h | 11 ++---- lib/include/srslte/phy/io/filesink.h | 11 ++---- lib/include/srslte/phy/io/filesource.h | 11 ++---- lib/include/srslte/phy/io/format.h | 12 ++---- lib/include/srslte/phy/io/netsink.h | 11 ++---- lib/include/srslte/phy/io/netsource.h | 11 ++---- lib/include/srslte/phy/mimo/layermap.h | 11 ++---- lib/include/srslte/phy/mimo/precoding.h | 11 ++---- lib/include/srslte/phy/modem/demod_hard.h | 11 ++---- lib/include/srslte/phy/modem/demod_soft.h | 11 ++---- lib/include/srslte/phy/modem/mod.h | 11 ++---- lib/include/srslte/phy/modem/modem_table.h | 11 ++---- lib/include/srslte/phy/phch/cqi.h | 11 ++---- lib/include/srslte/phy/phch/dci.h | 11 ++---- lib/include/srslte/phy/phch/pbch.h | 11 ++---- lib/include/srslte/phy/phch/pcfich.h | 11 ++---- lib/include/srslte/phy/phch/pdcch.h | 11 ++---- lib/include/srslte/phy/phch/pdsch.h | 11 ++---- lib/include/srslte/phy/phch/pdsch_cfg.h | 11 ++---- lib/include/srslte/phy/phch/phich.h | 11 ++---- lib/include/srslte/phy/phch/pmch.h | 11 ++---- lib/include/srslte/phy/phch/prach.h | 11 ++---- lib/include/srslte/phy/phch/pucch.h | 11 ++---- lib/include/srslte/phy/phch/pusch.h | 11 ++---- lib/include/srslte/phy/phch/pusch_cfg.h | 11 ++---- lib/include/srslte/phy/phch/ra.h | 11 ++---- lib/include/srslte/phy/phch/regs.h | 11 ++---- lib/include/srslte/phy/phch/sch.h | 11 ++---- lib/include/srslte/phy/phch/uci.h | 11 ++---- lib/include/srslte/phy/resampling/decim.h | 11 ++---- lib/include/srslte/phy/resampling/interp.h | 11 ++---- .../srslte/phy/resampling/resample_arb.h | 11 ++---- lib/include/srslte/phy/rf/rf.h | 13 ++----- lib/include/srslte/phy/rf/rf_utils.h | 11 ++---- .../srslte/phy/scrambling/scrambling.h | 11 ++---- lib/include/srslte/phy/sync/cfo.h | 11 ++---- lib/include/srslte/phy/sync/cp.h | 11 ++---- lib/include/srslte/phy/sync/pss.h | 11 ++---- lib/include/srslte/phy/sync/sfo.h | 11 ++---- lib/include/srslte/phy/sync/sss.h | 11 ++---- lib/include/srslte/phy/sync/sync.h | 11 ++---- lib/include/srslte/phy/ue/ue_cell_search.h | 11 ++---- lib/include/srslte/phy/ue/ue_dl.h | 11 ++---- lib/include/srslte/phy/ue/ue_mib.h | 11 ++---- lib/include/srslte/phy/ue/ue_phy.h | 11 ++---- lib/include/srslte/phy/ue/ue_sync.h | 11 ++---- lib/include/srslte/phy/ue/ue_ul.h | 11 ++---- lib/include/srslte/phy/utils/bit.h | 11 ++---- lib/include/srslte/phy/utils/cexptab.h | 11 ++---- lib/include/srslte/phy/utils/convolution.h | 11 ++---- lib/include/srslte/phy/utils/debug.h | 11 ++---- lib/include/srslte/phy/utils/filter.h | 11 ++---- lib/include/srslte/phy/utils/mat.h | 11 ++---- lib/include/srslte/phy/utils/simd.h | 11 ++---- lib/include/srslte/phy/utils/vector.h | 11 ++---- lib/include/srslte/phy/utils/vector_simd.h | 11 ++---- lib/include/srslte/radio/radio.h | 15 +++----- lib/include/srslte/radio/radio_multi.h | 13 ++----- lib/include/srslte/srslte.h | 12 ++---- lib/include/srslte/upper/gtpu.h | 15 +++----- lib/include/srslte/upper/pdcp.h | 15 +++----- lib/include/srslte/upper/pdcp_entity.h | 15 +++----- lib/include/srslte/upper/pdcp_interface.h | 15 +++----- lib/include/srslte/upper/rlc.h | 15 +++----- lib/include/srslte/upper/rlc_am.h | 15 +++----- lib/include/srslte/upper/rlc_common.h | 15 +++----- lib/include/srslte/upper/rlc_interface.h | 15 +++----- lib/include/srslte/upper/rlc_metrics.h | 15 +++----- lib/include/srslte/upper/rlc_tm.h | 15 +++----- lib/include/srslte/upper/rlc_tx_queue.h | 15 +++----- lib/include/srslte/upper/rlc_um.h | 15 +++----- lib/include/srslte/version.h.in | 12 ++---- lib/src/CMakeLists.txt | 4 +- lib/src/asn1/CMakeLists.txt | 4 +- lib/src/asn1/asn1_utils.cc | 37 ++++++++++--------- lib/src/asn1/gtpc.cc | 10 ++--- lib/src/asn1/liblte_m2ap.cc | 21 +++++++++-- lib/src/asn1/liblte_s1ap.cc | 23 ++++++++++-- lib/src/asn1/rrc_asn1.cc | 37 ++++++++++--------- lib/src/asn1/rrc_asn1_enum.cc | 37 ++++++++++--------- lib/src/common/CMakeLists.txt | 4 +- lib/src/common/arch_select.cc | 15 +++----- lib/src/common/buffer_pool.cc | 16 +++----- lib/src/common/crash_handler.c | 11 ++---- lib/src/common/gen_mch_tables.c | 16 +++----- lib/src/common/log_filter.cc | 15 +++----- lib/src/common/logger_file.cc | 16 +++----- lib/src/common/mac_pcap.cc | 16 +++----- lib/src/common/pdu.cc | 15 +++----- lib/src/common/pdu_queue.cc | 16 +++----- lib/src/common/rlc_pcap.cc | 16 +++----- lib/src/common/security.cc | 16 +++----- lib/src/common/task_dispatcher.cc | 16 +++----- lib/src/common/thread_pool.cc | 16 +++----- lib/src/common/threads.c | 15 +++----- lib/src/common/tti_sync_cv.cc | 15 +++----- lib/src/common/version.c | 11 ++---- lib/src/phy/CMakeLists.txt | 4 +- lib/src/phy/agc/CMakeLists.txt | 4 +- lib/src/phy/agc/agc.c | 12 ++---- lib/src/phy/ch_estimation/CMakeLists.txt | 4 +- lib/src/phy/ch_estimation/chest_common.c | 13 ++----- lib/src/phy/ch_estimation/chest_dl.c | 11 ++---- lib/src/phy/ch_estimation/chest_ul.c | 13 ++----- lib/src/phy/ch_estimation/refsignal_dl.c | 11 ++---- lib/src/phy/ch_estimation/refsignal_ul.c | 11 ++---- lib/src/phy/ch_estimation/test/CMakeLists.txt | 4 +- .../phy/ch_estimation/test/chest_test_dl.c | 11 ++---- .../phy/ch_estimation/test/chest_test_ul.c | 11 ++---- .../ch_estimation/test/refsignal_ul_test.c | 11 ++---- lib/src/phy/ch_estimation/ul_rs_tables.h | 11 ++---- lib/src/phy/channel/CMakeLists.txt | 4 +- lib/src/phy/channel/ch_awgn.c | 12 ++---- lib/src/phy/channel/gauss.c | 12 ++---- lib/src/phy/channel/gauss.h | 12 ++---- lib/src/phy/channel/test/CMakeLists.txt | 2 +- lib/src/phy/common/CMakeLists.txt | 4 +- lib/src/phy/common/phy_common.c | 11 ++---- lib/src/phy/common/sequence.c | 11 ++---- lib/src/phy/common/timestamp.c | 11 ++---- lib/src/phy/dft/CMakeLists.txt | 4 +- lib/src/phy/dft/dft_fftw.c | 11 ++---- lib/src/phy/dft/dft_precoding.c | 11 ++---- lib/src/phy/dft/ofdm.c | 11 ++---- lib/src/phy/dft/test/CMakeLists.txt | 4 +- lib/src/phy/dft/test/ofdm_test.c | 11 ++---- lib/src/phy/enb/CMakeLists.txt | 4 +- lib/src/phy/enb/enb_dl.c | 11 ++---- lib/src/phy/enb/enb_ul.c | 11 ++---- lib/src/phy/fec/CMakeLists.txt | 4 +- lib/src/phy/fec/cbsegm.c | 11 ++---- lib/src/phy/fec/convcoder.c | 12 ++---- lib/src/phy/fec/crc.c | 11 ++---- lib/src/phy/fec/parity.c | 20 +++++++++- lib/src/phy/fec/parity.h | 21 +++++++++-- lib/src/phy/fec/rm_conv.c | 11 ++---- lib/src/phy/fec/rm_turbo.c | 11 ++---- lib/src/phy/fec/softbuffer.c | 11 ++---- lib/src/phy/fec/tc_interl_lte.c | 11 ++---- lib/src/phy/fec/tc_interl_umts.c | 11 ++---- lib/src/phy/fec/test/CMakeLists.txt | 4 +- lib/src/phy/fec/test/crc_test.c | 11 ++---- lib/src/phy/fec/test/crc_test.h | 11 ++---- lib/src/phy/fec/test/rm_conv_test.c | 11 ++---- lib/src/phy/fec/test/rm_turbo_test.c | 11 ++---- lib/src/phy/fec/test/turbocoder_test.c | 11 ++---- lib/src/phy/fec/test/turbodecoder_test.c | 11 ++---- lib/src/phy/fec/test/turbodecoder_test.h | 11 ++---- lib/src/phy/fec/test/viterbi_test.c | 11 ++---- lib/src/phy/fec/test/viterbi_test.h | 11 ++---- lib/src/phy/fec/turbocoder.c | 12 ++---- lib/src/phy/fec/turbodecoder.c | 11 ++---- lib/src/phy/fec/turbodecoder_gen.c | 11 ++---- lib/src/phy/fec/turbodecoder_sse.c | 11 ++---- lib/src/phy/fec/viterbi.c | 11 ++---- lib/src/phy/fec/viterbi37.h | 11 ++---- lib/src/phy/io/CMakeLists.txt | 4 +- lib/src/phy/io/binsource.c | 12 ++---- lib/src/phy/io/filesink.c | 12 ++---- lib/src/phy/io/filesource.c | 12 ++---- lib/src/phy/io/netsink.c | 11 ++---- lib/src/phy/io/netsource.c | 11 ++---- lib/src/phy/mimo/CMakeLists.txt | 4 +- lib/src/phy/mimo/layermap.c | 12 ++---- lib/src/phy/mimo/precoding.c | 11 ++---- lib/src/phy/mimo/test/CMakeLists.txt | 4 +- lib/src/phy/mimo/test/layermap_test.c | 11 ++---- lib/src/phy/mimo/test/pmi_select_test.c | 11 ++---- lib/src/phy/mimo/test/pmi_select_test.h | 11 ++---- lib/src/phy/mimo/test/precoder_test.c | 11 ++---- lib/src/phy/modem/CMakeLists.txt | 4 +- lib/src/phy/modem/demod_hard.c | 12 ++---- lib/src/phy/modem/demod_soft.c | 12 ++---- lib/src/phy/modem/hard_demod_lte.c | 12 ++---- lib/src/phy/modem/hard_demod_lte.h | 11 ++---- lib/src/phy/modem/lte_tables.c | 12 ++---- lib/src/phy/modem/lte_tables.h | 12 ++---- lib/src/phy/modem/mod.c | 12 ++---- lib/src/phy/modem/modem_table.c | 12 ++---- lib/src/phy/modem/test/CMakeLists.txt | 4 +- lib/src/phy/modem/test/modem_test.c | 11 ++---- lib/src/phy/modem/test/soft_demod_test.c | 11 ++---- lib/src/phy/phch/CMakeLists.txt | 4 +- lib/src/phy/phch/cqi.c | 11 ++---- lib/src/phy/phch/dci.c | 11 ++---- lib/src/phy/phch/pbch.c | 11 ++---- lib/src/phy/phch/pcfich.c | 11 ++---- lib/src/phy/phch/pdcch.c | 11 ++---- lib/src/phy/phch/pdsch.c | 11 ++---- lib/src/phy/phch/phich.c | 11 ++---- lib/src/phy/phch/pmch.c | 11 ++---- lib/src/phy/phch/prach.c | 11 ++---- lib/src/phy/phch/prb_dl.c | 12 ++---- lib/src/phy/phch/prb_dl.h | 11 ++---- lib/src/phy/phch/pucch.c | 11 ++---- lib/src/phy/phch/pusch.c | 11 ++---- lib/src/phy/phch/ra.c | 11 ++---- lib/src/phy/phch/regs.c | 11 ++---- lib/src/phy/phch/sch.c | 11 ++---- lib/src/phy/phch/sequences.c | 12 ++---- lib/src/phy/phch/tbs_tables.h | 11 ++---- lib/src/phy/phch/test/CMakeLists.txt | 4 +- lib/src/phy/phch/test/pbch_file_test.c | 11 ++---- lib/src/phy/phch/test/pbch_test.c | 11 ++---- lib/src/phy/phch/test/pcfich_file_test.c | 11 ++---- lib/src/phy/phch/test/pcfich_test.c | 11 ++---- lib/src/phy/phch/test/pdcch_file_test.c | 11 ++---- lib/src/phy/phch/test/pdcch_test.c | 11 ++---- lib/src/phy/phch/test/pdsch_pdcch_file_test.c | 11 ++---- lib/src/phy/phch/test/pdsch_test.c | 11 ++---- lib/src/phy/phch/test/phich_file_test.c | 11 ++---- lib/src/phy/phch/test/phich_test.c | 11 ++---- lib/src/phy/phch/test/pmch_file_test.c | 11 ++---- lib/src/phy/phch/test/pmch_test.c | 11 ++---- lib/src/phy/phch/test/prach_test.c | 12 ++---- lib/src/phy/phch/test/prach_test_multi.c | 11 ++---- lib/src/phy/phch/test/prach_test_usrp.c | 12 ++---- lib/src/phy/phch/test/pucch_test.c | 11 ++---- lib/src/phy/phch/test/pusch_test.c | 11 ++---- lib/src/phy/phch/uci.c | 11 ++---- lib/src/phy/resampling/CMakeLists.txt | 4 +- lib/src/phy/resampling/decim.c | 11 ++---- lib/src/phy/resampling/interp.c | 11 ++---- lib/src/phy/resampling/resample_arb.c | 11 ++---- lib/src/phy/resampling/test/CMakeLists.txt | 4 +- .../phy/resampling/test/resample_arb_bench.c | 11 ++---- .../phy/resampling/test/resample_arb_test.c | 11 ++---- lib/src/phy/rf/CMakeLists.txt | 4 +- lib/src/phy/rf/rf_blade_imp.c | 11 ++---- lib/src/phy/rf/rf_blade_imp.h | 12 ++---- lib/src/phy/rf/rf_dev.h | 12 ++---- lib/src/phy/rf/rf_helper.h | 11 ++---- lib/src/phy/rf/rf_imp.c | 11 ++---- lib/src/phy/rf/rf_soapy_imp.c | 12 ++---- lib/src/phy/rf/rf_soapy_imp.h | 11 ++---- lib/src/phy/rf/rf_uhd_imp.c | 11 ++---- lib/src/phy/rf/rf_uhd_imp.h | 11 ++---- lib/src/phy/rf/rf_utils.c | 11 ++---- lib/src/phy/rf/rf_zmq_imp.c | 9 +---- lib/src/phy/rf/rf_zmq_imp.h | 9 +---- lib/src/phy/rf/rf_zmq_test.c | 9 +---- lib/src/phy/rf/uhd_c_api.h | 13 ++----- lib/src/phy/scrambling/CMakeLists.txt | 4 +- lib/src/phy/scrambling/scrambling.c | 11 ++---- lib/src/phy/scrambling/test/CMakeLists.txt | 4 +- lib/src/phy/scrambling/test/scrambling_test.c | 11 ++---- lib/src/phy/sync/CMakeLists.txt | 4 +- lib/src/phy/sync/cfo.c | 11 ++---- lib/src/phy/sync/cp.c | 11 ++---- lib/src/phy/sync/find_sss.c | 12 ++---- lib/src/phy/sync/gen_sss.c | 12 ++---- lib/src/phy/sync/pss.c | 12 ++---- lib/src/phy/sync/sfo.c | 12 ++---- lib/src/phy/sync/sss.c | 12 ++---- lib/src/phy/sync/sync.c | 11 ++---- lib/src/phy/sync/test/CMakeLists.txt | 4 +- lib/src/phy/sync/test/cfo_test.c | 11 ++---- lib/src/phy/sync/test/pss_file.c | 11 ++---- lib/src/phy/sync/test/pss_usrp.c | 11 ++---- lib/src/phy/sync/test/sync_test.c | 11 ++---- lib/src/phy/ue/CMakeLists.txt | 4 +- lib/src/phy/ue/ue_cell_search.c | 11 ++---- lib/src/phy/ue/ue_dl.c | 11 ++---- lib/src/phy/ue/ue_mib.c | 11 ++---- lib/src/phy/ue/ue_sync.c | 11 ++---- lib/src/phy/ue/ue_ul.c | 11 ++---- lib/src/phy/utils/CMakeLists.txt | 4 +- lib/src/phy/utils/bit.c | 11 ++---- lib/src/phy/utils/cexptab.c | 11 ++---- lib/src/phy/utils/convolution.c | 11 ++---- lib/src/phy/utils/debug.c | 11 ++---- lib/src/phy/utils/filter.c | 11 ++---- lib/src/phy/utils/mat.c | 11 ++---- lib/src/phy/utils/test/CMakeLists.txt | 4 +- lib/src/phy/utils/test/dft_test.c | 11 ++---- lib/src/phy/utils/test/mat_test.c | 11 ++---- lib/src/phy/utils/test/vector_test.c | 11 ++---- lib/src/phy/utils/vector.c | 12 ++---- lib/src/phy/utils/vector_simd.c | 12 ++---- lib/src/radio/CMakeLists.txt | 4 +- lib/src/radio/radio.cc | 15 +++----- lib/src/radio/test/CMakeLists.txt | 4 +- lib/src/radio/test/benchmark_radio.cc | 11 ++---- lib/src/upper/CMakeLists.txt | 4 +- lib/src/upper/gtpu.cc | 16 +++----- lib/src/upper/pdcp.cc | 16 +++----- lib/src/upper/pdcp_entity.cc | 16 +++----- lib/src/upper/rlc.cc | 18 +++------ lib/src/upper/rlc_am.cc | 16 +++----- lib/src/upper/rlc_tm.cc | 16 +++----- lib/src/upper/rlc_um.cc | 16 +++----- lib/test/CMakeLists.txt | 4 +- lib/test/asn1/CMakeLists.txt | 4 +- lib/test/asn1/s1ap_test.cc | 13 ++----- lib/test/asn1/srslte_asn1_m2ap_test.cc | 15 +++----- lib/test/asn1/srslte_asn1_rrc_dl_ccch_test.cc | 13 ++----- lib/test/asn1/srslte_asn1_rrc_dl_dcch_test.cc | 13 ++----- lib/test/asn1/srslte_asn1_rrc_mcch_test.cc | 15 +++----- lib/test/asn1/srslte_asn1_rrc_meas_test.cc | 15 +++----- lib/test/asn1/srslte_asn1_rrc_ul_dcch_test.cc | 15 +++----- lib/test/common/CMakeLists.txt | 4 +- lib/test/common/bcd_helpers_test.cc | 15 +++----- lib/test/common/log_filter_test.cc | 15 +++----- lib/test/common/logger_test.cc | 15 +++----- lib/test/common/msg_queue_test.cc | 15 +++----- lib/test/common/timeout_test.cc | 16 +++----- lib/test/phy/CMakeLists.txt | 4 +- lib/test/phy/phy_dl_test.c | 11 ++---- lib/test/upper/CMakeLists.txt | 4 +- lib/test/upper/rlc_am_control_test.cc | 15 +++----- lib/test/upper/rlc_am_data_test.cc | 15 +++----- lib/test/upper/rlc_am_test.cc | 15 +++----- lib/test/upper/rlc_stress_test.cc | 15 +++----- lib/test/upper/rlc_um_data_test.cc | 15 +++----- lib/test/upper/rlc_um_test.cc | 15 +++----- srsenb/CMakeLists.txt | 4 +- srsenb/hdr/cfg_parser.h | 13 ++----- srsenb/hdr/enb.h | 13 ++----- srsenb/hdr/mac/mac.h | 13 ++----- srsenb/hdr/mac/mac_metrics.h | 13 ++----- srsenb/hdr/mac/scheduler.h | 13 ++----- srsenb/hdr/mac/scheduler_harq.h | 13 ++----- srsenb/hdr/mac/scheduler_metric.h | 13 ++----- srsenb/hdr/mac/scheduler_ue.h | 13 ++----- srsenb/hdr/mac/ue.h | 13 ++----- srsenb/hdr/metrics_csv.h | 15 +++----- srsenb/hdr/metrics_stdout.h | 14 ++----- srsenb/hdr/parser.h | 13 ++----- srsenb/hdr/phy/phy.h | 13 ++----- srsenb/hdr/phy/phy_metrics.h | 13 ++----- srsenb/hdr/phy/prach_worker.h | 13 ++----- srsenb/hdr/phy/txrx.h | 13 ++----- srsenb/hdr/upper/common_enb.h | 13 ++----- srsenb/hdr/upper/gtpu.h | 13 ++----- srsenb/hdr/upper/pdcp.h | 13 ++----- srsenb/hdr/upper/rlc.h | 13 ++----- srsenb/hdr/upper/rrc.h | 13 ++----- srsenb/hdr/upper/rrc_metrics.h | 13 ++----- srsenb/hdr/upper/s1ap.h | 13 ++----- srsenb/hdr/upper/s1ap_metrics.h | 13 ++----- srsenb/src/CMakeLists.txt | 2 +- srsenb/src/enb.cc | 13 ++----- srsenb/src/enb_cfg_parser.cc | 13 ++----- srsenb/src/enb_cfg_parser.h | 13 ++----- srsenb/src/mac/CMakeLists.txt | 4 +- srsenb/src/mac/mac.cc | 13 ++----- srsenb/src/mac/scheduler.cc | 13 ++----- srsenb/src/mac/scheduler_harq.cc | 13 ++----- srsenb/src/mac/scheduler_metric.cc | 13 ++----- srsenb/src/mac/scheduler_ue.cc | 13 ++----- srsenb/src/mac/ue.cc | 13 ++----- srsenb/src/main.cc | 13 ++----- srsenb/src/metrics_csv.cc | 16 +++----- srsenb/src/metrics_stdout.cc | 13 ++----- srsenb/src/parser.cc | 13 ++----- srsenb/src/phy/CMakeLists.txt | 4 +- srsenb/src/phy/phy.cc | 13 ++----- srsenb/src/phy/prach_worker.cc | 13 ++----- srsenb/src/phy/txrx.cc | 13 ++----- srsenb/src/upper/CMakeLists.txt | 4 +- srsenb/src/upper/gtpu.cc | 13 ++----- srsenb/src/upper/pdcp.cc | 13 ++----- srsenb/src/upper/rlc.cc | 13 ++----- srsenb/src/upper/rrc.cc | 13 ++----- srsenb/src/upper/s1ap.cc | 13 ++----- srsenb/test/CMakeLists.txt | 2 +- srsenb/test/mac/CMakeLists.txt | 2 +- srsenb/test/mac/scheduler_test.cc | 16 ++------ srsenb/test/mac/scheduler_test_rand.cc | 13 ++----- srsenb/test/upper/CMakeLists.txt | 2 +- srsenb/test/upper/plmn_test.cc | 18 +++++++-- srsepc/CMakeLists.txt | 4 +- srsepc/hdr/hss/hss.h | 9 +---- srsepc/hdr/mbms-gw/mbms-gw.h | 9 +---- srsepc/hdr/mme/mme.h | 9 +---- srsepc/hdr/mme/mme_gtpc.h | 9 +---- srsepc/hdr/mme/nas.h | 2 +- srsepc/hdr/mme/s1ap.h | 9 +---- srsepc/hdr/mme/s1ap_common.h | 2 +- srsepc/hdr/mme/s1ap_ctx_mngmt_proc.h | 9 +---- srsepc/hdr/mme/s1ap_mngmt_proc.h | 9 +---- srsepc/hdr/mme/s1ap_nas_transport.h | 9 +---- srsepc/hdr/mme/s1ap_paging.h | 9 +---- srsepc/hdr/spgw/gtpc.h | 9 +---- srsepc/hdr/spgw/gtpu.h | 9 +---- srsepc/hdr/spgw/spgw.h | 9 +---- srsepc/src/CMakeLists.txt | 4 +- srsepc/src/hss/CMakeLists.txt | 4 +- srsepc/src/hss/hss.cc | 9 +---- srsepc/src/main.cc | 7 +--- srsepc/src/mbms-gw/CMakeLists.txt | 4 +- srsepc/src/mbms-gw/main.cc | 7 +--- srsepc/src/mbms-gw/mbms-gw.cc | 9 +---- srsepc/src/mme/CMakeLists.txt | 4 +- srsepc/src/mme/mme.cc | 9 +---- srsepc/src/mme/mme_gtpc.cc | 9 +---- srsepc/src/mme/nas.cc | 9 +---- srsepc/src/mme/s1ap.cc | 9 +---- srsepc/src/mme/s1ap_ctx_mngmt_proc.cc | 9 +---- srsepc/src/mme/s1ap_mngmt_proc.cc | 9 +---- srsepc/src/mme/s1ap_nas_transport.cc | 9 +---- srsepc/src/mme/s1ap_paging.cc | 9 +---- srsepc/src/spgw/CMakeLists.txt | 4 +- srsepc/src/spgw/gtpc.cc | 9 +---- srsepc/src/spgw/gtpu.cc | 9 +---- srsepc/src/spgw/spgw.cc | 9 +---- srsue/CMakeLists.txt | 4 +- srsue/hdr/mac/demux.h | 15 +++----- srsue/hdr/mac/dl_harq.h | 15 +++----- srsue/hdr/mac/dl_sps.h | 15 +++----- srsue/hdr/mac/mac.h | 15 +++----- srsue/hdr/mac/mac_metrics.h | 15 +++----- srsue/hdr/mac/mux.h | 15 +++----- srsue/hdr/mac/proc.h | 15 +++----- srsue/hdr/mac/proc_bsr.h | 15 +++----- srsue/hdr/mac/proc_phr.h | 15 +++----- srsue/hdr/mac/proc_ra.h | 15 +++----- srsue/hdr/mac/proc_sr.h | 15 +++----- srsue/hdr/mac/ul_harq.h | 15 +++----- srsue/hdr/mac/ul_sps.h | 15 +++----- srsue/hdr/metrics_csv.h | 15 +++----- srsue/hdr/metrics_stdout.h | 15 +++----- srsue/hdr/phy/phy.h | 15 +++----- srsue/hdr/phy/phy_metrics.h | 15 +++----- srsue/hdr/phy/prach.h | 15 +++----- srsue/hdr/ue.h | 15 +++----- srsue/hdr/ue_base.h | 15 +++----- srsue/hdr/ue_metrics_interface.h | 15 +++----- srsue/hdr/upper/gw.h | 15 +++----- srsue/hdr/upper/gw_metrics.h | 15 +++----- srsue/hdr/upper/nas.h | 15 +++----- srsue/hdr/upper/pcsc_usim.h | 15 +++----- srsue/hdr/upper/rrc.h | 15 +++----- srsue/hdr/upper/rrc_common.h | 15 +++----- srsue/hdr/upper/usim.h | 15 +++----- srsue/hdr/upper/usim_base.h | 15 +++----- srsue/src/CMakeLists.txt | 4 +- srsue/src/mac/CMakeLists.txt | 4 +- srsue/src/mac/demux.cc | 16 +++----- srsue/src/mac/mac.cc | 15 +++----- srsue/src/mac/mux.cc | 15 +++----- srsue/src/mac/proc_bsr.cc | 15 +++----- srsue/src/mac/proc_phr.cc | 15 +++----- srsue/src/mac/proc_ra.cc | 15 +++----- srsue/src/mac/proc_sr.cc | 15 +++----- srsue/src/main.cc | 15 +++----- srsue/src/metrics_csv.cc | 16 +++----- srsue/src/metrics_stdout.cc | 16 +++----- srsue/src/phy/CMakeLists.txt | 4 +- srsue/src/phy/phy.cc | 15 +++----- srsue/src/phy/prach.cc | 15 +++----- srsue/src/set_net_admin_caps.cc | 15 +++----- srsue/src/ue.cc | 16 +++----- srsue/src/ue_base.cc | 15 +++----- srsue/src/upper/CMakeLists.txt | 4 +- srsue/src/upper/gw.cc | 16 +++----- srsue/src/upper/nas.cc | 15 +++----- srsue/src/upper/pcsc_usim.cc | 16 +++----- srsue/src/upper/rrc.cc | 15 +++----- srsue/src/upper/usim.cc | 16 +++----- srsue/src/upper/usim_base.cc | 15 +++----- srsue/test/CMakeLists.txt | 4 +- srsue/test/metrics_test.cc | 15 +++----- srsue/test/upper/CMakeLists.txt | 4 +- srsue/test/upper/nas_test.cc | 15 +++----- srsue/test/upper/pcsc_usim_test.cc | 15 +++----- srsue/test/upper/rrc_reconfig_test.cc | 15 +++----- srsue/test/upper/usim_test.cc | 15 +++----- 553 files changed, 2064 insertions(+), 4373 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 17ddf54d0..32b68080a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/cmake/modules/SRSLTEVersion.cmake b/cmake/modules/SRSLTEVersion.cmake index 7e4111648..205ce91b8 100644 --- a/cmake/modules/SRSLTEVersion.cmake +++ b/cmake/modules/SRSLTEVersion.cmake @@ -1,7 +1,8 @@ + # -# Copyright 2013-2015 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # -# This file is part of the srsLTE library. +# This file is part of srsLTE # # srsLTE is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -10,7 +11,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 6b638cef5..7e89e7d1f 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/examples/CMakeLists.txt b/lib/examples/CMakeLists.txt index 89b5a71dd..dc9866262 100644 --- a/lib/examples/CMakeLists.txt +++ b/lib/examples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/examples/cell_search.c b/lib/examples/cell_search.c index 273ae2577..094445f22 100644 --- a/lib/examples/cell_search.c +++ b/lib/examples/cell_search.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/pdsch_enodeb.c b/lib/examples/pdsch_enodeb.c index cae9a39b4..850c8f84b 100644 --- a/lib/examples/pdsch_enodeb.c +++ b/lib/examples/pdsch_enodeb.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/pdsch_ue.c b/lib/examples/pdsch_ue.c index 73ead7900..241955da3 100644 --- a/lib/examples/pdsch_ue.c +++ b/lib/examples/pdsch_ue.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/synch_file.c b/lib/examples/synch_file.c index 855106a2f..eac52d2e9 100644 --- a/lib/examples/synch_file.c +++ b/lib/examples/synch_file.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/usrp_capture.c b/lib/examples/usrp_capture.c index af150c4cf..bdccd6a3a 100644 --- a/lib/examples/usrp_capture.c +++ b/lib/examples/usrp_capture.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/usrp_capture_sync.c b/lib/examples/usrp_capture_sync.c index 68a372514..e668119b4 100644 --- a/lib/examples/usrp_capture_sync.c +++ b/lib/examples/usrp_capture_sync.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/examples/usrp_txrx.c b/lib/examples/usrp_txrx.c index 741bb6391..cfc3b52dd 100644 --- a/lib/examples/usrp_txrx.c +++ b/lib/examples/usrp_txrx.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/include/CMakeLists.txt b/lib/include/CMakeLists.txt index 483afa049..9b4576569 100644 --- a/lib/include/CMakeLists.txt +++ b/lib/include/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/include/srslte/CMakeLists.txt b/lib/include/srslte/CMakeLists.txt index ee7cfa287..6ace11ddd 100644 --- a/lib/include/srslte/CMakeLists.txt +++ b/lib/include/srslte/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/include/srslte/asn1/asn1_utils.h b/lib/include/srslte/asn1/asn1_utils.h index 907d11285..ceec14995 100644 --- a/lib/include/srslte/asn1/asn1_utils.h +++ b/lib/include/srslte/asn1/asn1_utils.h @@ -1,22 +1,23 @@ /* -Copyright 2013-2017 Software Radio Systems Limited - -This file is part of srsLTE - -srsLTE is free software: you can redistribute it and/or modify -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, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -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/. -*/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #ifndef SRSASN_COMMON_UTILS_H #define SRSASN_COMMON_UTILS_H diff --git a/lib/include/srslte/asn1/gtpc.h b/lib/include/srslte/asn1/gtpc.h index 23df183d5..c50b1bcda 100644 --- a/lib/include/srslte/asn1/gtpc.h +++ b/lib/include/srslte/asn1/gtpc.h @@ -1,17 +1,14 @@ -/* \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/asn1/gtpc_ies.h b/lib/include/srslte/asn1/gtpc_ies.h index 215021584..264045c87 100644 --- a/lib/include/srslte/asn1/gtpc_ies.h +++ b/lib/include/srslte/asn1/gtpc_ies.h @@ -1,17 +1,14 @@ -/* \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/asn1/gtpc_msg.h b/lib/include/srslte/asn1/gtpc_msg.h index 22c7318b5..0ee64d9c4 100644 --- a/lib/include/srslte/asn1/gtpc_msg.h +++ b/lib/include/srslte/asn1/gtpc_msg.h @@ -1,17 +1,14 @@ -/* \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/asn1/liblte_m2ap.h b/lib/include/srslte/asn1/liblte_m2ap.h index 942fbe51b..755e0ce46 100644 --- a/lib/include/srslte/asn1/liblte_m2ap.h +++ b/lib/include/srslte/asn1/liblte_m2ap.h @@ -1,8 +1,23 @@ -/******************************************************************************* +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * Copyright 2018 Software Radio Systems Limited + * This file is part of srsLTE. * - *******************************************************************************/ + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #ifndef SRSLTE_LIBLTE_M2AP_H #define SRSLTE_LIBLTE_M2AP_H diff --git a/lib/include/srslte/asn1/liblte_s1ap.h b/lib/include/srslte/asn1/liblte_s1ap.h index 0874ec753..3a2d632ff 100644 --- a/lib/include/srslte/asn1/liblte_s1ap.h +++ b/lib/include/srslte/asn1/liblte_s1ap.h @@ -1,8 +1,23 @@ -/******************************************************************************* /* -/* Copyright 2016 Software Radio Systems Limited -/* -********************************************************************************/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #ifndef SRSLTE_LIBLTE_S1AP_H #define SRSLTE_LIBLTE_S1AP_H diff --git a/lib/include/srslte/asn1/rrc_asn1.h b/lib/include/srslte/asn1/rrc_asn1.h index b8848e115..a13199753 100644 --- a/lib/include/srslte/asn1/rrc_asn1.h +++ b/lib/include/srslte/asn1/rrc_asn1.h @@ -1,22 +1,23 @@ /* -Copyright 2019 Software Radio Systems Limited - -This file is part of srsLTE - -srsASN1 is free software: you can redistribute it and/or modify -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. - -srsASN1 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 Affero General Public License for more details. - -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/. -*/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #ifndef SRSASN1_RRC_H #define SRSASN1_RRC_H diff --git a/lib/include/srslte/build_info.h.in b/lib/include/srslte/build_info.h.in index 5409ab077..44d6e4b1f 100644 --- a/lib/include/srslte/build_info.h.in +++ b/lib/include/srslte/build_info.h.in @@ -1,15 +1,9 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify - * 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. diff --git a/lib/include/srslte/common/bcd_helpers.h b/lib/include/srslte/common/bcd_helpers.h index b3ce9aa64..4c013c012 100644 --- a/lib/include/srslte/common/bcd_helpers.h +++ b/lib/include/srslte/common/bcd_helpers.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/block_queue.h b/lib/include/srslte/common/block_queue.h index dbcb80cb2..7de092985 100644 --- a/lib/include/srslte/common/block_queue.h +++ b/lib/include/srslte/common/block_queue.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - /****************************************************************************** * File: block_queue.h * Description: General-purpose blocking queue. It can behave as a bounded or diff --git a/lib/include/srslte/common/buffer_pool.h b/lib/include/srslte/common/buffer_pool.h index 944410de2..eccc3b703 100644 --- a/lib/include/srslte/common/buffer_pool.h +++ b/lib/include/srslte/common/buffer_pool.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/common.h b/lib/include/srslte/common/common.h index 383bcdb23..438acd7ac 100644 --- a/lib/include/srslte/common/common.h +++ b/lib/include/srslte/common/common.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/config_file.h b/lib/include/srslte/common/config_file.h index ae7809b8a..820e1f483 100644 --- a/lib/include/srslte/common/config_file.h +++ b/lib/include/srslte/common/config_file.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/crash_handler.h b/lib/include/srslte/common/crash_handler.h index dec3940e1..e4edf5909 100644 --- a/lib/include/srslte/common/crash_handler.h +++ b/lib/include/srslte/common/crash_handler.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/common/gen_mch_tables.h b/lib/include/srslte/common/gen_mch_tables.h index 2e5ea04b0..3f343e864 100644 --- a/lib/include/srslte/common/gen_mch_tables.h +++ b/lib/include/srslte/common/gen_mch_tables.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/int_helpers.h b/lib/include/srslte/common/int_helpers.h index e6ac48155..074e572c0 100644 --- a/lib/include/srslte/common/int_helpers.h +++ b/lib/include/srslte/common/int_helpers.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/interfaces_common.h b/lib/include/srslte/common/interfaces_common.h index 816824461..493ab3e87 100644 --- a/lib/include/srslte/common/interfaces_common.h +++ b/lib/include/srslte/common/interfaces_common.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/log.h b/lib/include/srslte/common/log.h index 79dbdc088..ef81cbcc5 100644 --- a/lib/include/srslte/common/log.h +++ b/lib/include/srslte/common/log.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/log_filter.h b/lib/include/srslte/common/log_filter.h index 87e59bb68..a27b52b54 100644 --- a/lib/include/srslte/common/log_filter.h +++ b/lib/include/srslte/common/log_filter.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/logger.h b/lib/include/srslte/common/logger.h index ed352cd5f..bafd05f17 100644 --- a/lib/include/srslte/common/logger.h +++ b/lib/include/srslte/common/logger.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/logger_file.h b/lib/include/srslte/common/logger_file.h index 956753f7a..80c20585e 100644 --- a/lib/include/srslte/common/logger_file.h +++ b/lib/include/srslte/common/logger_file.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/logger_stdout.h b/lib/include/srslte/common/logger_stdout.h index 4aab21d6b..7cdc9323b 100644 --- a/lib/include/srslte/common/logger_stdout.h +++ b/lib/include/srslte/common/logger_stdout.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/mac_pcap.h b/lib/include/srslte/common/mac_pcap.h index 0e94a3ad4..65a327c5b 100644 --- a/lib/include/srslte/common/mac_pcap.h +++ b/lib/include/srslte/common/mac_pcap.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/pcap.h b/lib/include/srslte/common/pcap.h index 0f63ff11d..c59a2a17d 100644 --- a/lib/include/srslte/common/pcap.h +++ b/lib/include/srslte/common/pcap.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/pdu.h b/lib/include/srslte/common/pdu.h index 742519e81..15cbce3c5 100644 --- a/lib/include/srslte/common/pdu.h +++ b/lib/include/srslte/common/pdu.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/pdu_queue.h b/lib/include/srslte/common/pdu_queue.h index bda5adc9b..b8b64969d 100644 --- a/lib/include/srslte/common/pdu_queue.h +++ b/lib/include/srslte/common/pdu_queue.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/rlc_pcap.h b/lib/include/srslte/common/rlc_pcap.h index 3a506f6ef..6166a1f66 100644 --- a/lib/include/srslte/common/rlc_pcap.h +++ b/lib/include/srslte/common/rlc_pcap.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/security.h b/lib/include/srslte/common/security.h index 29bd6000c..69a06e7b1 100644 --- a/lib/include/srslte/common/security.h +++ b/lib/include/srslte/common/security.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/task_dispatcher.h b/lib/include/srslte/common/task_dispatcher.h index c1d223a2b..472c1fb8e 100644 --- a/lib/include/srslte/common/task_dispatcher.h +++ b/lib/include/srslte/common/task_dispatcher.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/thread_pool.h b/lib/include/srslte/common/thread_pool.h index c6b971371..b439918f0 100644 --- a/lib/include/srslte/common/thread_pool.h +++ b/lib/include/srslte/common/thread_pool.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/threads.h b/lib/include/srslte/common/threads.h index c6791ae7f..689182aa5 100644 --- a/lib/include/srslte/common/threads.h +++ b/lib/include/srslte/common/threads.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/include/srslte/common/timeout.h b/lib/include/srslte/common/timeout.h index bca09da31..0ef03992e 100644 --- a/lib/include/srslte/common/timeout.h +++ b/lib/include/srslte/common/timeout.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/timers.h b/lib/include/srslte/common/timers.h index bfb038158..f2029acd1 100644 --- a/lib/include/srslte/common/timers.h +++ b/lib/include/srslte/common/timers.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - /****************************************************************************** * File: timers.h * Description: Manually incremented timers. Call a callback function upon diff --git a/lib/include/srslte/common/trace.h b/lib/include/srslte/common/trace.h index 00c7739f6..cf6b0b586 100644 --- a/lib/include/srslte/common/trace.h +++ b/lib/include/srslte/common/trace.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/tti_sync.h b/lib/include/srslte/common/tti_sync.h index dd018f889..b73acb342 100644 --- a/lib/include/srslte/common/tti_sync.h +++ b/lib/include/srslte/common/tti_sync.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/common/tti_sync_cv.h b/lib/include/srslte/common/tti_sync_cv.h index 2ba975faa..7cb49b7d5 100644 --- a/lib/include/srslte/common/tti_sync_cv.h +++ b/lib/include/srslte/common/tti_sync_cv.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/config.h b/lib/include/srslte/config.h index 8ba918d20..5ee98db95 100644 --- a/lib/include/srslte/config.h +++ b/lib/include/srslte/config.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/interfaces/enb_interfaces.h b/lib/include/srslte/interfaces/enb_interfaces.h index 84ca88a5d..7b55e9b04 100644 --- a/lib/include/srslte/interfaces/enb_interfaces.h +++ b/lib/include/srslte/interfaces/enb_interfaces.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/interfaces/enb_metrics_interface.h b/lib/include/srslte/interfaces/enb_metrics_interface.h index f896296ba..31bd5e1ed 100644 --- a/lib/include/srslte/interfaces/enb_metrics_interface.h +++ b/lib/include/srslte/interfaces/enb_metrics_interface.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/interfaces/epc_interfaces.h b/lib/include/srslte/interfaces/epc_interfaces.h index 84f31cd88..f08a00150 100644 --- a/lib/include/srslte/interfaces/epc_interfaces.h +++ b/lib/include/srslte/interfaces/epc_interfaces.h @@ -1,5 +1,5 @@ /* - * \section LICENSE + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/lib/include/srslte/interfaces/sched_interface.h b/lib/include/srslte/interfaces/sched_interface.h index 12318f81c..ba9e5480e 100644 --- a/lib/include/srslte/interfaces/sched_interface.h +++ b/lib/include/srslte/interfaces/sched_interface.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/interfaces/ue_interfaces.h b/lib/include/srslte/interfaces/ue_interfaces.h index 0f1fce236..41e19719a 100644 --- a/lib/include/srslte/interfaces/ue_interfaces.h +++ b/lib/include/srslte/interfaces/ue_interfaces.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/phy/agc/agc.h b/lib/include/srslte/phy/agc/agc.h index 7d49451bf..52c96eea9 100644 --- a/lib/include/srslte/phy/agc/agc.h +++ b/lib/include/srslte/phy/agc/agc.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ch_estimation/chest_common.h b/lib/include/srslte/phy/ch_estimation/chest_common.h index 60a593fcc..33c1a90e4 100644 --- a/lib/include/srslte/phy/ch_estimation/chest_common.h +++ b/lib/include/srslte/phy/ch_estimation/chest_common.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ch_estimation/chest_dl.h b/lib/include/srslte/phy/ch_estimation/chest_dl.h index 7c25fa97b..fded05479 100644 --- a/lib/include/srslte/phy/ch_estimation/chest_dl.h +++ b/lib/include/srslte/phy/ch_estimation/chest_dl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ch_estimation/chest_ul.h b/lib/include/srslte/phy/ch_estimation/chest_ul.h index 28e2dbd05..667de147d 100644 --- a/lib/include/srslte/phy/ch_estimation/chest_ul.h +++ b/lib/include/srslte/phy/ch_estimation/chest_ul.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ch_estimation/refsignal_dl.h b/lib/include/srslte/phy/ch_estimation/refsignal_dl.h index de304fe05..98daa4476 100644 --- a/lib/include/srslte/phy/ch_estimation/refsignal_dl.h +++ b/lib/include/srslte/phy/ch_estimation/refsignal_dl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ch_estimation/refsignal_ul.h b/lib/include/srslte/phy/ch_estimation/refsignal_ul.h index c99d381a9..f972fed79 100644 --- a/lib/include/srslte/phy/ch_estimation/refsignal_ul.h +++ b/lib/include/srslte/phy/ch_estimation/refsignal_ul.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/channel/ch_awgn.h b/lib/include/srslte/phy/channel/ch_awgn.h index 3dbabcda7..83fe9b417 100644 --- a/lib/include/srslte/phy/channel/ch_awgn.h +++ b/lib/include/srslte/phy/channel/ch_awgn.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/common/phy_common.h b/lib/include/srslte/phy/common/phy_common.h index 80a5e8a20..4740690b7 100644 --- a/lib/include/srslte/phy/common/phy_common.h +++ b/lib/include/srslte/phy/common/phy_common.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/common/sequence.h b/lib/include/srslte/phy/common/sequence.h index 96d18c008..29fa7109c 100644 --- a/lib/include/srslte/phy/common/sequence.h +++ b/lib/include/srslte/phy/common/sequence.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/common/timestamp.h b/lib/include/srslte/phy/common/timestamp.h index 209cd2d1b..2c574e8b6 100644 --- a/lib/include/srslte/phy/common/timestamp.h +++ b/lib/include/srslte/phy/common/timestamp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/dft/dft.h b/lib/include/srslte/phy/dft/dft.h index e62362d8c..88ce4872d 100644 --- a/lib/include/srslte/phy/dft/dft.h +++ b/lib/include/srslte/phy/dft/dft.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #ifndef SRSLTE_DFT_H #define SRSLTE_DFT_H diff --git a/lib/include/srslte/phy/dft/dft_precoding.h b/lib/include/srslte/phy/dft/dft_precoding.h index c1eb20ec6..32ad4e47d 100644 --- a/lib/include/srslte/phy/dft/dft_precoding.h +++ b/lib/include/srslte/phy/dft/dft_precoding.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/dft/ofdm.h b/lib/include/srslte/phy/dft/ofdm.h index c28d41bdd..5da102885 100644 --- a/lib/include/srslte/phy/dft/ofdm.h +++ b/lib/include/srslte/phy/dft/ofdm.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #ifndef SRSLTE_OFDM_H #define SRSLTE_OFDM_H diff --git a/lib/include/srslte/phy/enb/enb_dl.h b/lib/include/srslte/phy/enb/enb_dl.h index a96e50051..641325955 100644 --- a/lib/include/srslte/phy/enb/enb_dl.h +++ b/lib/include/srslte/phy/enb/enb_dl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/enb/enb_ul.h b/lib/include/srslte/phy/enb/enb_ul.h index 18948fc67..835fe801d 100644 --- a/lib/include/srslte/phy/enb/enb_ul.h +++ b/lib/include/srslte/phy/enb/enb_ul.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/cbsegm.h b/lib/include/srslte/phy/fec/cbsegm.h index 7eee8320d..f0ae1ebd1 100644 --- a/lib/include/srslte/phy/fec/cbsegm.h +++ b/lib/include/srslte/phy/fec/cbsegm.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/convcoder.h b/lib/include/srslte/phy/fec/convcoder.h index 99dfd333e..b08ffcfdd 100644 --- a/lib/include/srslte/phy/fec/convcoder.h +++ b/lib/include/srslte/phy/fec/convcoder.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/crc.h b/lib/include/srslte/phy/fec/crc.h index 9bc864831..aefa790eb 100644 --- a/lib/include/srslte/phy/fec/crc.h +++ b/lib/include/srslte/phy/fec/crc.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/rm_conv.h b/lib/include/srslte/phy/fec/rm_conv.h index 9681ce827..5bbdeb3d4 100644 --- a/lib/include/srslte/phy/fec/rm_conv.h +++ b/lib/include/srslte/phy/fec/rm_conv.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/rm_turbo.h b/lib/include/srslte/phy/fec/rm_turbo.h index 51519ae72..4c1173011 100644 --- a/lib/include/srslte/phy/fec/rm_turbo.h +++ b/lib/include/srslte/phy/fec/rm_turbo.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/softbuffer.h b/lib/include/srslte/phy/fec/softbuffer.h index 864fc1439..4a9146d1c 100644 --- a/lib/include/srslte/phy/fec/softbuffer.h +++ b/lib/include/srslte/phy/fec/softbuffer.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/tc_interl.h b/lib/include/srslte/phy/fec/tc_interl.h index 6cb1ad4c9..81125ce44 100644 --- a/lib/include/srslte/phy/fec/tc_interl.h +++ b/lib/include/srslte/phy/fec/tc_interl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbocoder.h b/lib/include/srslte/phy/fec/turbocoder.h index 84abf5b28..132d710c4 100644 --- a/lib/include/srslte/phy/fec/turbocoder.h +++ b/lib/include/srslte/phy/fec/turbocoder.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder.h b/lib/include/srslte/phy/fec/turbodecoder.h index 4c4de0082..c31c619c9 100644 --- a/lib/include/srslte/phy/fec/turbodecoder.h +++ b/lib/include/srslte/phy/fec/turbodecoder.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder_gen.h b/lib/include/srslte/phy/fec/turbodecoder_gen.h index 4d61c5e23..649916609 100644 --- a/lib/include/srslte/phy/fec/turbodecoder_gen.h +++ b/lib/include/srslte/phy/fec/turbodecoder_gen.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder_impl.h b/lib/include/srslte/phy/fec/turbodecoder_impl.h index fa39626ee..82402efc3 100644 --- a/lib/include/srslte/phy/fec/turbodecoder_impl.h +++ b/lib/include/srslte/phy/fec/turbodecoder_impl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder_iter.h b/lib/include/srslte/phy/fec/turbodecoder_iter.h index d0873122b..24ca2d4d6 100644 --- a/lib/include/srslte/phy/fec/turbodecoder_iter.h +++ b/lib/include/srslte/phy/fec/turbodecoder_iter.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder_sse.h b/lib/include/srslte/phy/fec/turbodecoder_sse.h index a02654238..820199eaf 100644 --- a/lib/include/srslte/phy/fec/turbodecoder_sse.h +++ b/lib/include/srslte/phy/fec/turbodecoder_sse.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/turbodecoder_win.h b/lib/include/srslte/phy/fec/turbodecoder_win.h index b9a4a66c6..349ce2d15 100644 --- a/lib/include/srslte/phy/fec/turbodecoder_win.h +++ b/lib/include/srslte/phy/fec/turbodecoder_win.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/fec/viterbi.h b/lib/include/srslte/phy/fec/viterbi.h index 0f6f0cd50..7528e3269 100644 --- a/lib/include/srslte/phy/fec/viterbi.h +++ b/lib/include/srslte/phy/fec/viterbi.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/io/binsource.h b/lib/include/srslte/phy/io/binsource.h index 733449b25..d03915061 100644 --- a/lib/include/srslte/phy/io/binsource.h +++ b/lib/include/srslte/phy/io/binsource.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/io/filesink.h b/lib/include/srslte/phy/io/filesink.h index b6fee3adf..460a967f0 100644 --- a/lib/include/srslte/phy/io/filesink.h +++ b/lib/include/srslte/phy/io/filesink.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/io/filesource.h b/lib/include/srslte/phy/io/filesource.h index d4ad81f94..cd5618589 100644 --- a/lib/include/srslte/phy/io/filesource.h +++ b/lib/include/srslte/phy/io/filesource.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/io/format.h b/lib/include/srslte/phy/io/format.h index 22c0e3973..df24df4a7 100644 --- a/lib/include/srslte/phy/io/format.h +++ b/lib/include/srslte/phy/io/format.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #ifndef SRSLTE_FORMAT_H #define SRSLTE_FORMAT_H diff --git a/lib/include/srslte/phy/io/netsink.h b/lib/include/srslte/phy/io/netsink.h index 246c520bf..52c88bbac 100644 --- a/lib/include/srslte/phy/io/netsink.h +++ b/lib/include/srslte/phy/io/netsink.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/io/netsource.h b/lib/include/srslte/phy/io/netsource.h index ee0ca69da..24eeef85e 100644 --- a/lib/include/srslte/phy/io/netsource.h +++ b/lib/include/srslte/phy/io/netsource.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/mimo/layermap.h b/lib/include/srslte/phy/mimo/layermap.h index 473fbdaea..26c61b4de 100644 --- a/lib/include/srslte/phy/mimo/layermap.h +++ b/lib/include/srslte/phy/mimo/layermap.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/mimo/precoding.h b/lib/include/srslte/phy/mimo/precoding.h index 4be4af9db..903ea369b 100644 --- a/lib/include/srslte/phy/mimo/precoding.h +++ b/lib/include/srslte/phy/mimo/precoding.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/modem/demod_hard.h b/lib/include/srslte/phy/modem/demod_hard.h index 689bcca42..482466ab1 100644 --- a/lib/include/srslte/phy/modem/demod_hard.h +++ b/lib/include/srslte/phy/modem/demod_hard.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/modem/demod_soft.h b/lib/include/srslte/phy/modem/demod_soft.h index eb1924cae..d2661e0fe 100644 --- a/lib/include/srslte/phy/modem/demod_soft.h +++ b/lib/include/srslte/phy/modem/demod_soft.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/modem/mod.h b/lib/include/srslte/phy/modem/mod.h index a2f8299a1..889a02789 100644 --- a/lib/include/srslte/phy/modem/mod.h +++ b/lib/include/srslte/phy/modem/mod.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/modem/modem_table.h b/lib/include/srslte/phy/modem/modem_table.h index 09cea5e10..cffe0b7b3 100644 --- a/lib/include/srslte/phy/modem/modem_table.h +++ b/lib/include/srslte/phy/modem/modem_table.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/cqi.h b/lib/include/srslte/phy/phch/cqi.h index f35d56a84..24abb6222 100644 --- a/lib/include/srslte/phy/phch/cqi.h +++ b/lib/include/srslte/phy/phch/cqi.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/dci.h b/lib/include/srslte/phy/phch/dci.h index b1eb94ee6..3353becb6 100644 --- a/lib/include/srslte/phy/phch/dci.h +++ b/lib/include/srslte/phy/phch/dci.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pbch.h b/lib/include/srslte/phy/phch/pbch.h index f67983f1f..16ea75618 100644 --- a/lib/include/srslte/phy/phch/pbch.h +++ b/lib/include/srslte/phy/phch/pbch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pcfich.h b/lib/include/srslte/phy/phch/pcfich.h index 96415add4..88794f1e9 100644 --- a/lib/include/srslte/phy/phch/pcfich.h +++ b/lib/include/srslte/phy/phch/pcfich.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pdcch.h b/lib/include/srslte/phy/phch/pdcch.h index 14a464cf2..8f0afff9e 100644 --- a/lib/include/srslte/phy/phch/pdcch.h +++ b/lib/include/srslte/phy/phch/pdcch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pdsch.h b/lib/include/srslte/phy/phch/pdsch.h index ad721d9a3..7757ed698 100644 --- a/lib/include/srslte/phy/phch/pdsch.h +++ b/lib/include/srslte/phy/phch/pdsch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pdsch_cfg.h b/lib/include/srslte/phy/phch/pdsch_cfg.h index 6657c2268..d00813648 100644 --- a/lib/include/srslte/phy/phch/pdsch_cfg.h +++ b/lib/include/srslte/phy/phch/pdsch_cfg.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/phich.h b/lib/include/srslte/phy/phch/phich.h index 0a8f24044..025f8d454 100644 --- a/lib/include/srslte/phy/phch/phich.h +++ b/lib/include/srslte/phy/phch/phich.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pmch.h b/lib/include/srslte/phy/phch/pmch.h index 7e52ce814..2adf8d8a4 100644 --- a/lib/include/srslte/phy/phch/pmch.h +++ b/lib/include/srslte/phy/phch/pmch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/prach.h b/lib/include/srslte/phy/phch/prach.h index e1623644b..5faa26030 100644 --- a/lib/include/srslte/phy/phch/prach.h +++ b/lib/include/srslte/phy/phch/prach.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pucch.h b/lib/include/srslte/phy/phch/pucch.h index b2c88dd42..c0dcc01dd 100644 --- a/lib/include/srslte/phy/phch/pucch.h +++ b/lib/include/srslte/phy/phch/pucch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pusch.h b/lib/include/srslte/phy/phch/pusch.h index 8280fa5ab..cdbf1f7c5 100644 --- a/lib/include/srslte/phy/phch/pusch.h +++ b/lib/include/srslte/phy/phch/pusch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/pusch_cfg.h b/lib/include/srslte/phy/phch/pusch_cfg.h index 179ff1bff..af82505d3 100644 --- a/lib/include/srslte/phy/phch/pusch_cfg.h +++ b/lib/include/srslte/phy/phch/pusch_cfg.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/ra.h b/lib/include/srslte/phy/phch/ra.h index db5b33605..e1d82fc05 100644 --- a/lib/include/srslte/phy/phch/ra.h +++ b/lib/include/srslte/phy/phch/ra.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/regs.h b/lib/include/srslte/phy/phch/regs.h index db043758e..e3af65f4a 100644 --- a/lib/include/srslte/phy/phch/regs.h +++ b/lib/include/srslte/phy/phch/regs.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/sch.h b/lib/include/srslte/phy/phch/sch.h index 331d2bbcf..00428128b 100644 --- a/lib/include/srslte/phy/phch/sch.h +++ b/lib/include/srslte/phy/phch/sch.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/phch/uci.h b/lib/include/srslte/phy/phch/uci.h index 3fc417a70..9d43af238 100644 --- a/lib/include/srslte/phy/phch/uci.h +++ b/lib/include/srslte/phy/phch/uci.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/resampling/decim.h b/lib/include/srslte/phy/resampling/decim.h index 1394c645a..d89879b4a 100644 --- a/lib/include/srslte/phy/resampling/decim.h +++ b/lib/include/srslte/phy/resampling/decim.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/resampling/interp.h b/lib/include/srslte/phy/resampling/interp.h index 8cdb8218a..66554be0d 100644 --- a/lib/include/srslte/phy/resampling/interp.h +++ b/lib/include/srslte/phy/resampling/interp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/resampling/resample_arb.h b/lib/include/srslte/phy/resampling/resample_arb.h index 76d873041..b13fe6fba 100644 --- a/lib/include/srslte/phy/resampling/resample_arb.h +++ b/lib/include/srslte/phy/resampling/resample_arb.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/rf/rf.h b/lib/include/srslte/phy/rf/rf.h index f15bef61f..d9d5222d8 100644 --- a/lib/include/srslte/phy/rf/rf.h +++ b/lib/include/srslte/phy/rf/rf.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -23,7 +18,7 @@ * and at http://www.gnu.org/licenses/. * */ - + #ifndef SRSLTE_RF_H #define SRSLTE_RF_H diff --git a/lib/include/srslte/phy/rf/rf_utils.h b/lib/include/srslte/phy/rf/rf_utils.h index 8c0c0cb03..4443499fb 100644 --- a/lib/include/srslte/phy/rf/rf_utils.h +++ b/lib/include/srslte/phy/rf/rf_utils.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/scrambling/scrambling.h b/lib/include/srslte/phy/scrambling/scrambling.h index 66b4b1431..790a23eda 100644 --- a/lib/include/srslte/phy/scrambling/scrambling.h +++ b/lib/include/srslte/phy/scrambling/scrambling.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/cfo.h b/lib/include/srslte/phy/sync/cfo.h index b28d57d33..9da206252 100644 --- a/lib/include/srslte/phy/sync/cfo.h +++ b/lib/include/srslte/phy/sync/cfo.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/cp.h b/lib/include/srslte/phy/sync/cp.h index 511efb426..200b5e1a7 100644 --- a/lib/include/srslte/phy/sync/cp.h +++ b/lib/include/srslte/phy/sync/cp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/pss.h b/lib/include/srslte/phy/sync/pss.h index 520e2bcec..4bb283d4f 100644 --- a/lib/include/srslte/phy/sync/pss.h +++ b/lib/include/srslte/phy/sync/pss.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/sfo.h b/lib/include/srslte/phy/sync/sfo.h index a42ced471..7e63c6c9c 100644 --- a/lib/include/srslte/phy/sync/sfo.h +++ b/lib/include/srslte/phy/sync/sfo.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/sss.h b/lib/include/srslte/phy/sync/sss.h index c2c8d876b..40249f687 100644 --- a/lib/include/srslte/phy/sync/sss.h +++ b/lib/include/srslte/phy/sync/sss.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/sync/sync.h b/lib/include/srslte/phy/sync/sync.h index 02c5e3f00..ba1b1539e 100644 --- a/lib/include/srslte/phy/sync/sync.h +++ b/lib/include/srslte/phy/sync/sync.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_cell_search.h b/lib/include/srslte/phy/ue/ue_cell_search.h index 0f30a841d..d0b8a99f5 100644 --- a/lib/include/srslte/phy/ue/ue_cell_search.h +++ b/lib/include/srslte/phy/ue/ue_cell_search.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_dl.h b/lib/include/srslte/phy/ue/ue_dl.h index ae6c7f3fb..ac1777056 100644 --- a/lib/include/srslte/phy/ue/ue_dl.h +++ b/lib/include/srslte/phy/ue/ue_dl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_mib.h b/lib/include/srslte/phy/ue/ue_mib.h index ff9a4b3e7..1bb287f3f 100644 --- a/lib/include/srslte/phy/ue/ue_mib.h +++ b/lib/include/srslte/phy/ue/ue_mib.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_phy.h b/lib/include/srslte/phy/ue/ue_phy.h index 6f056ab9d..e6bf0dbb5 100644 --- a/lib/include/srslte/phy/ue/ue_phy.h +++ b/lib/include/srslte/phy/ue/ue_phy.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_sync.h b/lib/include/srslte/phy/ue/ue_sync.h index ae60c99e7..80d244533 100644 --- a/lib/include/srslte/phy/ue/ue_sync.h +++ b/lib/include/srslte/phy/ue/ue_sync.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/ue/ue_ul.h b/lib/include/srslte/phy/ue/ue_ul.h index 7b3635ab4..a1611d9e4 100644 --- a/lib/include/srslte/phy/ue/ue_ul.h +++ b/lib/include/srslte/phy/ue/ue_ul.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/bit.h b/lib/include/srslte/phy/utils/bit.h index 8a4ff789b..f1d9f7879 100644 --- a/lib/include/srslte/phy/utils/bit.h +++ b/lib/include/srslte/phy/utils/bit.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/cexptab.h b/lib/include/srslte/phy/utils/cexptab.h index b96b330a9..7d88d22ea 100644 --- a/lib/include/srslte/phy/utils/cexptab.h +++ b/lib/include/srslte/phy/utils/cexptab.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/convolution.h b/lib/include/srslte/phy/utils/convolution.h index 3f0cad7aa..5d0f72a93 100644 --- a/lib/include/srslte/phy/utils/convolution.h +++ b/lib/include/srslte/phy/utils/convolution.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/debug.h b/lib/include/srslte/phy/utils/debug.h index 72e575dd1..3075578c8 100644 --- a/lib/include/srslte/phy/utils/debug.h +++ b/lib/include/srslte/phy/utils/debug.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/filter.h b/lib/include/srslte/phy/utils/filter.h index a126e171b..3e2eaed45 100644 --- a/lib/include/srslte/phy/utils/filter.h +++ b/lib/include/srslte/phy/utils/filter.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/mat.h b/lib/include/srslte/phy/utils/mat.h index c8465b34e..fad5a1fce 100644 --- a/lib/include/srslte/phy/utils/mat.h +++ b/lib/include/srslte/phy/utils/mat.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/simd.h b/lib/include/srslte/phy/utils/simd.h index 2c5d1ea4b..28a233da5 100644 --- a/lib/include/srslte/phy/utils/simd.h +++ b/lib/include/srslte/phy/utils/simd.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/vector.h b/lib/include/srslte/phy/utils/vector.h index c9e491027..7e7ae546c 100644 --- a/lib/include/srslte/phy/utils/vector.h +++ b/lib/include/srslte/phy/utils/vector.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/phy/utils/vector_simd.h b/lib/include/srslte/phy/utils/vector_simd.h index cd198df8f..60cc9967b 100644 --- a/lib/include/srslte/phy/utils/vector_simd.h +++ b/lib/include/srslte/phy/utils/vector_simd.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/include/srslte/radio/radio.h b/lib/include/srslte/radio/radio.h index afef8028c..98f1c79b2 100644 --- a/lib/include/srslte/radio/radio.h +++ b/lib/include/srslte/radio/radio.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/radio/radio_multi.h b/lib/include/srslte/radio/radio_multi.h index 712a95072..5bbd07e52 100644 --- a/lib/include/srslte/radio/radio_multi.h +++ b/lib/include/srslte/radio/radio_multi.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/srslte.h b/lib/include/srslte/srslte.h index 75c541bd2..67fc07896 100644 --- a/lib/include/srslte/srslte.h +++ b/lib/include/srslte/srslte.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #ifndef SRSLTE_SRSLTE_H #define SRSLTE_SRSLTE_H diff --git a/lib/include/srslte/upper/gtpu.h b/lib/include/srslte/upper/gtpu.h index 2230d76b7..3b4bd1d34 100644 --- a/lib/include/srslte/upper/gtpu.h +++ b/lib/include/srslte/upper/gtpu.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/pdcp.h b/lib/include/srslte/upper/pdcp.h index 753f8f597..d2181ffd8 100644 --- a/lib/include/srslte/upper/pdcp.h +++ b/lib/include/srslte/upper/pdcp.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/pdcp_entity.h b/lib/include/srslte/upper/pdcp_entity.h index 8d4b87204..687c60fa6 100644 --- a/lib/include/srslte/upper/pdcp_entity.h +++ b/lib/include/srslte/upper/pdcp_entity.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/pdcp_interface.h b/lib/include/srslte/upper/pdcp_interface.h index 18488248e..4679f5ad7 100644 --- a/lib/include/srslte/upper/pdcp_interface.h +++ b/lib/include/srslte/upper/pdcp_interface.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc.h b/lib/include/srslte/upper/rlc.h index 642d59fac..ee5da3d18 100644 --- a/lib/include/srslte/upper/rlc.h +++ b/lib/include/srslte/upper/rlc.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_am.h b/lib/include/srslte/upper/rlc_am.h index d67dbb53b..226fa035b 100644 --- a/lib/include/srslte/upper/rlc_am.h +++ b/lib/include/srslte/upper/rlc_am.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_common.h b/lib/include/srslte/upper/rlc_common.h index 26366f518..6c69b92a1 100644 --- a/lib/include/srslte/upper/rlc_common.h +++ b/lib/include/srslte/upper/rlc_common.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_interface.h b/lib/include/srslte/upper/rlc_interface.h index b70ba1a85..25eabe718 100644 --- a/lib/include/srslte/upper/rlc_interface.h +++ b/lib/include/srslte/upper/rlc_interface.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_metrics.h b/lib/include/srslte/upper/rlc_metrics.h index 153fba57b..5e2d69c12 100644 --- a/lib/include/srslte/upper/rlc_metrics.h +++ b/lib/include/srslte/upper/rlc_metrics.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_tm.h b/lib/include/srslte/upper/rlc_tm.h index 51016c1c6..8d3b9375d 100644 --- a/lib/include/srslte/upper/rlc_tm.h +++ b/lib/include/srslte/upper/rlc_tm.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_tx_queue.h b/lib/include/srslte/upper/rlc_tx_queue.h index daf0f6380..9eafa8326 100644 --- a/lib/include/srslte/upper/rlc_tx_queue.h +++ b/lib/include/srslte/upper/rlc_tx_queue.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/upper/rlc_um.h b/lib/include/srslte/upper/rlc_um.h index c861f8cf9..df179a346 100644 --- a/lib/include/srslte/upper/rlc_um.h +++ b/lib/include/srslte/upper/rlc_um.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/include/srslte/version.h.in b/lib/include/srslte/version.h.in index f50a6f9bf..48e78c2ac 100644 --- a/lib/include/srslte/version.h.in +++ b/lib/include/srslte/version.h.in @@ -1,15 +1,9 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify - * 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. diff --git a/lib/src/CMakeLists.txt b/lib/src/CMakeLists.txt index 2c576f754..ad4f60cbe 100644 --- a/lib/src/CMakeLists.txt +++ b/lib/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/asn1/CMakeLists.txt b/lib/src/asn1/CMakeLists.txt index 75d4b1389..aa529e866 100644 --- a/lib/src/asn1/CMakeLists.txt +++ b/lib/src/asn1/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/asn1/asn1_utils.cc b/lib/src/asn1/asn1_utils.cc index a43bf54a4..52b3bae4b 100644 --- a/lib/src/asn1/asn1_utils.cc +++ b/lib/src/asn1/asn1_utils.cc @@ -1,22 +1,23 @@ /* -Copyright 2013-2017 Software Radio Systems Limited - -This file is part of srsLTE - -srsLTE is free software: you can redistribute it and/or modify -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, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -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/. -*/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include "srslte/asn1/asn1_utils.h" #include diff --git a/lib/src/asn1/gtpc.cc b/lib/src/asn1/gtpc.cc index 85a5a3557..6a3358394 100644 --- a/lib/src/asn1/gtpc.cc +++ b/lib/src/asn1/gtpc.cc @@ -1,18 +1,14 @@ /* - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/asn1/liblte_m2ap.cc b/lib/src/asn1/liblte_m2ap.cc index 6791e166f..c14655fed 100644 --- a/lib/src/asn1/liblte_m2ap.cc +++ b/lib/src/asn1/liblte_m2ap.cc @@ -1,8 +1,23 @@ -/******************************************************************************* +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * Copyright 2018 Software Radio Systems Limited + * This file is part of srsLTE. * - ********************************************************************************/ + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include "srslte/asn1/liblte_m2ap.h" #include #include diff --git a/lib/src/asn1/liblte_s1ap.cc b/lib/src/asn1/liblte_s1ap.cc index 056d27f2a..fc2315f1e 100644 --- a/lib/src/asn1/liblte_s1ap.cc +++ b/lib/src/asn1/liblte_s1ap.cc @@ -1,8 +1,23 @@ -/******************************************************************************* /* -/* Copyright 2016 Software Radio Systems Limited -/* -********************************************************************************/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include "srslte/asn1/liblte_s1ap.h" # include diff --git a/lib/src/asn1/rrc_asn1.cc b/lib/src/asn1/rrc_asn1.cc index ef1efb44d..404420f5b 100644 --- a/lib/src/asn1/rrc_asn1.cc +++ b/lib/src/asn1/rrc_asn1.cc @@ -1,22 +1,23 @@ /* -Copyright 2019 Software Radio Systems Limited - -This file is part of srsLTE - -srsASN1 is free software: you can redistribute it and/or modify -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. - -srsASN1 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 Affero General Public License for more details. - -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/. -*/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include "srslte/asn1/rrc_asn1.h" #include diff --git a/lib/src/asn1/rrc_asn1_enum.cc b/lib/src/asn1/rrc_asn1_enum.cc index f25b21a00..1ed53b98b 100644 --- a/lib/src/asn1/rrc_asn1_enum.cc +++ b/lib/src/asn1/rrc_asn1_enum.cc @@ -1,22 +1,23 @@ /* -Copyright 2019 Software Radio Systems Limited - -This file is part of srsLTE - -srsASN1 is free software: you can redistribute it and/or modify -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. - -srsASN1 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 Affero General Public License for more details. - -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/. -*/ + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * + */ #include "srslte/asn1/rrc_asn1.h" #include diff --git a/lib/src/common/CMakeLists.txt b/lib/src/common/CMakeLists.txt index 5e5bda2b0..4cedc3a20 100644 --- a/lib/src/common/CMakeLists.txt +++ b/lib/src/common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/common/arch_select.cc b/lib/src/common/arch_select.cc index a78f80a2e..148dff8f9 100644 --- a/lib/src/common/arch_select.cc +++ b/lib/src/common/arch_select.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/common/buffer_pool.cc b/lib/src/common/buffer_pool.cc index 5d74da166..30312bdb7 100644 --- a/lib/src/common/buffer_pool.cc +++ b/lib/src/common/buffer_pool.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include "srslte/common/buffer_pool.h" #include diff --git a/lib/src/common/crash_handler.c b/lib/src/common/crash_handler.c index 658f70181..071b95a0c 100644 --- a/lib/src/common/crash_handler.c +++ b/lib/src/common/crash_handler.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/common/gen_mch_tables.c b/lib/src/common/gen_mch_tables.c index 510bf2658..ae9e2e0ee 100644 --- a/lib/src/common/gen_mch_tables.c +++ b/lib/src/common/gen_mch_tables.c @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/common/gen_mch_tables.h" diff --git a/lib/src/common/log_filter.cc b/lib/src/common/log_filter.cc index 12239f0ff..0808a265e 100644 --- a/lib/src/common/log_filter.cc +++ b/lib/src/common/log_filter.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/common/logger_file.cc b/lib/src/common/logger_file.cc index d89dfac0c..5b22fbae8 100644 --- a/lib/src/common/logger_file.cc +++ b/lib/src/common/logger_file.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #define LOG_BUFFER_SIZE 1024*32 #include "srslte/common/logger_file.h" diff --git a/lib/src/common/mac_pcap.cc b/lib/src/common/mac_pcap.cc index 3eae666eb..8dab781fa 100644 --- a/lib/src/common/mac_pcap.cc +++ b/lib/src/common/mac_pcap.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include "srslte/srslte.h" #include "srslte/common/pcap.h" diff --git a/lib/src/common/pdu.cc b/lib/src/common/pdu.cc index c07afcc65..e26465efc 100644 --- a/lib/src/common/pdu.cc +++ b/lib/src/common/pdu.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/common/pdu_queue.cc b/lib/src/common/pdu_queue.cc index 621365f58..ed351c961 100644 --- a/lib/src/common/pdu_queue.cc +++ b/lib/src/common/pdu_queue.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #define Error(fmt, ...) log_h->error(fmt, ##__VA_ARGS__) #define Warning(fmt, ...) log_h->warning(fmt, ##__VA_ARGS__) #define Info(fmt, ...) log_h->info(fmt, ##__VA_ARGS__) diff --git a/lib/src/common/rlc_pcap.cc b/lib/src/common/rlc_pcap.cc index e6bcbe642..7410ec7f4 100644 --- a/lib/src/common/rlc_pcap.cc +++ b/lib/src/common/rlc_pcap.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include "srslte/srslte.h" #include "srslte/common/pcap.h" diff --git a/lib/src/common/security.cc b/lib/src/common/security.cc index 8f04d07e1..81dab28c5 100644 --- a/lib/src/common/security.cc +++ b/lib/src/common/security.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/common/security.h" #include "srslte/common/liblte_security.h" #include "srslte/common/snow_3g.h" diff --git a/lib/src/common/task_dispatcher.cc b/lib/src/common/task_dispatcher.cc index df27a023a..f5c669d16 100644 --- a/lib/src/common/task_dispatcher.cc +++ b/lib/src/common/task_dispatcher.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/common/task_dispatcher.h" #include diff --git a/lib/src/common/thread_pool.cc b/lib/src/common/thread_pool.cc index 1892878fd..f48b1cb27 100644 --- a/lib/src/common/thread_pool.cc +++ b/lib/src/common/thread_pool.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include #include "srslte/common/thread_pool.h" diff --git a/lib/src/common/threads.c b/lib/src/common/threads.c index b54dc7029..344236c21 100644 --- a/lib/src/common/threads.c +++ b/lib/src/common/threads.c @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/common/tti_sync_cv.cc b/lib/src/common/tti_sync_cv.cc index c48f0772a..7250fda38 100644 --- a/lib/src/common/tti_sync_cv.cc +++ b/lib/src/common/tti_sync_cv.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/common/version.c b/lib/src/common/version.c index 2cf1d4bf2..be99bc0c9 100644 --- a/lib/src/common/version.c +++ b/lib/src/common/version.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/CMakeLists.txt b/lib/src/phy/CMakeLists.txt index 43f242669..242040b57 100644 --- a/lib/src/phy/CMakeLists.txt +++ b/lib/src/phy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/agc/CMakeLists.txt b/lib/src/phy/agc/CMakeLists.txt index fed3467d4..fbdd74096 100644 --- a/lib/src/phy/agc/CMakeLists.txt +++ b/lib/src/phy/agc/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/agc/agc.c b/lib/src/phy/agc/agc.c index 9554d78e6..654a16fbe 100644 --- a/lib/src/phy/agc/agc.c +++ b/lib/src/phy/agc/agc.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/ch_estimation/CMakeLists.txt b/lib/src/phy/ch_estimation/CMakeLists.txt index ac069bd04..cb3bf4a9a 100644 --- a/lib/src/phy/ch_estimation/CMakeLists.txt +++ b/lib/src/phy/ch_estimation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/ch_estimation/chest_common.c b/lib/src/phy/ch_estimation/chest_common.c index d465ec280..d47c33b37 100644 --- a/lib/src/phy/ch_estimation/chest_common.c +++ b/lib/src/phy/ch_estimation/chest_common.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,8 +19,6 @@ * */ - - #include #include #include diff --git a/lib/src/phy/ch_estimation/chest_dl.c b/lib/src/phy/ch_estimation/chest_dl.c index a8ffd605d..9a875349b 100644 --- a/lib/src/phy/ch_estimation/chest_dl.c +++ b/lib/src/phy/ch_estimation/chest_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/chest_ul.c b/lib/src/phy/ch_estimation/chest_ul.c index 2861a2990..5e89b2bd1 100644 --- a/lib/src/phy/ch_estimation/chest_ul.c +++ b/lib/src/phy/ch_estimation/chest_ul.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,8 +19,6 @@ * */ - - #include #include #include diff --git a/lib/src/phy/ch_estimation/refsignal_dl.c b/lib/src/phy/ch_estimation/refsignal_dl.c index a9e0846a8..a9ab6d7d3 100644 --- a/lib/src/phy/ch_estimation/refsignal_dl.c +++ b/lib/src/phy/ch_estimation/refsignal_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/refsignal_ul.c b/lib/src/phy/ch_estimation/refsignal_ul.c index 2b1c26e7d..c59e4f2e0 100644 --- a/lib/src/phy/ch_estimation/refsignal_ul.c +++ b/lib/src/phy/ch_estimation/refsignal_ul.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/test/CMakeLists.txt b/lib/src/phy/ch_estimation/test/CMakeLists.txt index c02c39043..cc3de1dd5 100644 --- a/lib/src/phy/ch_estimation/test/CMakeLists.txt +++ b/lib/src/phy/ch_estimation/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/ch_estimation/test/chest_test_dl.c b/lib/src/phy/ch_estimation/test/chest_test_dl.c index df6376692..716824ac7 100644 --- a/lib/src/phy/ch_estimation/test/chest_test_dl.c +++ b/lib/src/phy/ch_estimation/test/chest_test_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/test/chest_test_ul.c b/lib/src/phy/ch_estimation/test/chest_test_ul.c index 7f3e0f443..b54305015 100644 --- a/lib/src/phy/ch_estimation/test/chest_test_ul.c +++ b/lib/src/phy/ch_estimation/test/chest_test_ul.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/test/refsignal_ul_test.c b/lib/src/phy/ch_estimation/test/refsignal_ul_test.c index 4fbca4447..ebae22c50 100644 --- a/lib/src/phy/ch_estimation/test/refsignal_ul_test.c +++ b/lib/src/phy/ch_estimation/test/refsignal_ul_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ch_estimation/ul_rs_tables.h b/lib/src/phy/ch_estimation/ul_rs_tables.h index d6b88cebc..6d50519a2 100644 --- a/lib/src/phy/ch_estimation/ul_rs_tables.h +++ b/lib/src/phy/ch_estimation/ul_rs_tables.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/channel/CMakeLists.txt b/lib/src/phy/channel/CMakeLists.txt index 22b9c8599..a24cd69d2 100644 --- a/lib/src/phy/channel/CMakeLists.txt +++ b/lib/src/phy/channel/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/channel/ch_awgn.c b/lib/src/phy/channel/ch_awgn.c index d88a91abc..224f4d38a 100644 --- a/lib/src/phy/channel/ch_awgn.c +++ b/lib/src/phy/channel/ch_awgn.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/channel/gauss.c b/lib/src/phy/channel/gauss.c index 5dcc0de3f..2b3d7b9fb 100644 --- a/lib/src/phy/channel/gauss.c +++ b/lib/src/phy/channel/gauss.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/channel/gauss.h b/lib/src/phy/channel/gauss.h index 412df4784..7e2c1747e 100644 --- a/lib/src/phy/channel/gauss.h +++ b/lib/src/phy/channel/gauss.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,5 +19,4 @@ * */ - float rand_gauss (void); diff --git a/lib/src/phy/channel/test/CMakeLists.txt b/lib/src/phy/channel/test/CMakeLists.txt index 9965d081a..4db294941 100644 --- a/lib/src/phy/channel/test/CMakeLists.txt +++ b/lib/src/phy/channel/test/CMakeLists.txt @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/common/CMakeLists.txt b/lib/src/phy/common/CMakeLists.txt index ba2fc1351..5baa4bdd7 100644 --- a/lib/src/phy/common/CMakeLists.txt +++ b/lib/src/phy/common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/common/phy_common.c b/lib/src/phy/common/phy_common.c index 6b9e31e2e..7549a691e 100644 --- a/lib/src/phy/common/phy_common.c +++ b/lib/src/phy/common/phy_common.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/common/sequence.c b/lib/src/phy/common/sequence.c index 5219ce695..ac333c137 100644 --- a/lib/src/phy/common/sequence.c +++ b/lib/src/phy/common/sequence.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/common/timestamp.c b/lib/src/phy/common/timestamp.c index 23c555ebc..d36dc35a0 100644 --- a/lib/src/phy/common/timestamp.c +++ b/lib/src/phy/common/timestamp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/dft/CMakeLists.txt b/lib/src/phy/dft/CMakeLists.txt index 3af59bf34..bbcd87e41 100644 --- a/lib/src/phy/dft/CMakeLists.txt +++ b/lib/src/phy/dft/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/dft/dft_fftw.c b/lib/src/phy/dft/dft_fftw.c index 79d8a4560..f9ee612be 100644 --- a/lib/src/phy/dft/dft_fftw.c +++ b/lib/src/phy/dft/dft_fftw.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/dft/dft_precoding.c b/lib/src/phy/dft/dft_precoding.c index 781ce9360..fa8286a56 100644 --- a/lib/src/phy/dft/dft_precoding.c +++ b/lib/src/phy/dft/dft_precoding.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/dft/ofdm.c b/lib/src/phy/dft/ofdm.c index 12746c680..33c176481 100644 --- a/lib/src/phy/dft/ofdm.c +++ b/lib/src/phy/dft/ofdm.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/dft/test/CMakeLists.txt b/lib/src/phy/dft/test/CMakeLists.txt index f781dede8..ed2365923 100644 --- a/lib/src/phy/dft/test/CMakeLists.txt +++ b/lib/src/phy/dft/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/dft/test/ofdm_test.c b/lib/src/phy/dft/test/ofdm_test.c index a44af5701..514fb4817 100644 --- a/lib/src/phy/dft/test/ofdm_test.c +++ b/lib/src/phy/dft/test/ofdm_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/enb/CMakeLists.txt b/lib/src/phy/enb/CMakeLists.txt index e15fae905..7f664df6f 100644 --- a/lib/src/phy/enb/CMakeLists.txt +++ b/lib/src/phy/enb/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/enb/enb_dl.c b/lib/src/phy/enb/enb_dl.c index cf0ad1e29..c7c7c81bd 100644 --- a/lib/src/phy/enb/enb_dl.c +++ b/lib/src/phy/enb/enb_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/enb/enb_ul.c b/lib/src/phy/enb/enb_ul.c index 210812220..40900d1c2 100644 --- a/lib/src/phy/enb/enb_ul.c +++ b/lib/src/phy/enb/enb_ul.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/CMakeLists.txt b/lib/src/phy/fec/CMakeLists.txt index 86ed0819d..59ca6b145 100644 --- a/lib/src/phy/fec/CMakeLists.txt +++ b/lib/src/phy/fec/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/fec/cbsegm.c b/lib/src/phy/fec/cbsegm.c index dc4c19209..3a723cfcc 100644 --- a/lib/src/phy/fec/cbsegm.c +++ b/lib/src/phy/fec/cbsegm.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/convcoder.c b/lib/src/phy/fec/convcoder.c index bc71d63f1..6239ed74c 100644 --- a/lib/src/phy/fec/convcoder.c +++ b/lib/src/phy/fec/convcoder.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/fec/crc.c b/lib/src/phy/fec/crc.c index cb819e62f..f0a90ba3c 100644 --- a/lib/src/phy/fec/crc.c +++ b/lib/src/phy/fec/crc.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/parity.c b/lib/src/phy/fec/parity.c index 145ad8127..f775ec7ab 100644 --- a/lib/src/phy/fec/parity.c +++ b/lib/src/phy/fec/parity.c @@ -1,6 +1,22 @@ /* - * Copyright 2004, Phil Karn, KA9Q - * May be used under the terms of the GNU Affero General Public License (LGPL) + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ #include diff --git a/lib/src/phy/fec/parity.h b/lib/src/phy/fec/parity.h index 247a6faee..32f4c3623 100644 --- a/lib/src/phy/fec/parity.h +++ b/lib/src/phy/fec/parity.h @@ -1,9 +1,24 @@ /* - * Copyright 2004, Phil Karn, KA9Q - * May be used under the terms of the GNU Affero General Public License (LGPL) + * Copyright 2013-2019 Software Radio Systems Limited + * + * This file is part of srsLTE. + * + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. + * */ - #ifdef __x86_64__ #define __i386__ #endif diff --git a/lib/src/phy/fec/rm_conv.c b/lib/src/phy/fec/rm_conv.c index af24fc03d..1e8fa4e36 100644 --- a/lib/src/phy/fec/rm_conv.c +++ b/lib/src/phy/fec/rm_conv.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/rm_turbo.c b/lib/src/phy/fec/rm_turbo.c index 5b1a6a897..21194c23f 100644 --- a/lib/src/phy/fec/rm_turbo.c +++ b/lib/src/phy/fec/rm_turbo.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/softbuffer.c b/lib/src/phy/fec/softbuffer.c index 9ed526825..d7703d489 100644 --- a/lib/src/phy/fec/softbuffer.c +++ b/lib/src/phy/fec/softbuffer.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/tc_interl_lte.c b/lib/src/phy/fec/tc_interl_lte.c index 63a49f7e9..546bd7401 100644 --- a/lib/src/phy/fec/tc_interl_lte.c +++ b/lib/src/phy/fec/tc_interl_lte.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/tc_interl_umts.c b/lib/src/phy/fec/tc_interl_umts.c index 78014824b..1ce302047 100644 --- a/lib/src/phy/fec/tc_interl_umts.c +++ b/lib/src/phy/fec/tc_interl_umts.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/CMakeLists.txt b/lib/src/phy/fec/test/CMakeLists.txt index b8046c3bb..6737d6b66 100644 --- a/lib/src/phy/fec/test/CMakeLists.txt +++ b/lib/src/phy/fec/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/fec/test/crc_test.c b/lib/src/phy/fec/test/crc_test.c index 9d603ba95..8c062bc23 100644 --- a/lib/src/phy/fec/test/crc_test.c +++ b/lib/src/phy/fec/test/crc_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/crc_test.h b/lib/src/phy/fec/test/crc_test.h index 3123133b9..3fc7a8cce 100644 --- a/lib/src/phy/fec/test/crc_test.h +++ b/lib/src/phy/fec/test/crc_test.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/rm_conv_test.c b/lib/src/phy/fec/test/rm_conv_test.c index 73f3fb60f..680de3d28 100644 --- a/lib/src/phy/fec/test/rm_conv_test.c +++ b/lib/src/phy/fec/test/rm_conv_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/rm_turbo_test.c b/lib/src/phy/fec/test/rm_turbo_test.c index f911da1d2..900a37feb 100644 --- a/lib/src/phy/fec/test/rm_turbo_test.c +++ b/lib/src/phy/fec/test/rm_turbo_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/turbocoder_test.c b/lib/src/phy/fec/test/turbocoder_test.c index 37b82902e..97da3ef43 100644 --- a/lib/src/phy/fec/test/turbocoder_test.c +++ b/lib/src/phy/fec/test/turbocoder_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/turbodecoder_test.c b/lib/src/phy/fec/test/turbodecoder_test.c index 217d61795..8fc573d53 100644 --- a/lib/src/phy/fec/test/turbodecoder_test.c +++ b/lib/src/phy/fec/test/turbodecoder_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/turbodecoder_test.h b/lib/src/phy/fec/test/turbodecoder_test.h index ec6b5f9c4..25bdae0a9 100644 --- a/lib/src/phy/fec/test/turbodecoder_test.h +++ b/lib/src/phy/fec/test/turbodecoder_test.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/viterbi_test.c b/lib/src/phy/fec/test/viterbi_test.c index 6124d89fd..73873350d 100644 --- a/lib/src/phy/fec/test/viterbi_test.c +++ b/lib/src/phy/fec/test/viterbi_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/test/viterbi_test.h b/lib/src/phy/fec/test/viterbi_test.h index 38665305e..f66317ed1 100644 --- a/lib/src/phy/fec/test/viterbi_test.h +++ b/lib/src/phy/fec/test/viterbi_test.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/turbocoder.c b/lib/src/phy/fec/turbocoder.c index 734fe8c84..894a4b032 100644 --- a/lib/src/phy/fec/turbocoder.c +++ b/lib/src/phy/fec/turbocoder.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/fec/turbodecoder.c b/lib/src/phy/fec/turbodecoder.c index 2782f4992..a113bc4e7 100644 --- a/lib/src/phy/fec/turbodecoder.c +++ b/lib/src/phy/fec/turbodecoder.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/turbodecoder_gen.c b/lib/src/phy/fec/turbodecoder_gen.c index b7d67dae0..3fadafc54 100644 --- a/lib/src/phy/fec/turbodecoder_gen.c +++ b/lib/src/phy/fec/turbodecoder_gen.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/turbodecoder_sse.c b/lib/src/phy/fec/turbodecoder_sse.c index 773ce1144..c6286645f 100644 --- a/lib/src/phy/fec/turbodecoder_sse.c +++ b/lib/src/phy/fec/turbodecoder_sse.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/viterbi.c b/lib/src/phy/fec/viterbi.c index c15add0a0..10fbb6e94 100644 --- a/lib/src/phy/fec/viterbi.c +++ b/lib/src/phy/fec/viterbi.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/fec/viterbi37.h b/lib/src/phy/fec/viterbi37.h index a77145592..878efe1b1 100644 --- a/lib/src/phy/fec/viterbi37.h +++ b/lib/src/phy/fec/viterbi37.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/io/CMakeLists.txt b/lib/src/phy/io/CMakeLists.txt index a56658e34..601dd3afd 100644 --- a/lib/src/phy/io/CMakeLists.txt +++ b/lib/src/phy/io/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/io/binsource.c b/lib/src/phy/io/binsource.c index f78bfc49b..f3a129fb9 100644 --- a/lib/src/phy/io/binsource.c +++ b/lib/src/phy/io/binsource.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/io/filesink.c b/lib/src/phy/io/filesink.c index a61c417fd..3b2bfd2f4 100644 --- a/lib/src/phy/io/filesink.c +++ b/lib/src/phy/io/filesink.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/io/filesource.c b/lib/src/phy/io/filesource.c index c3f7b819a..11f4f6832 100644 --- a/lib/src/phy/io/filesource.c +++ b/lib/src/phy/io/filesource.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/io/netsink.c b/lib/src/phy/io/netsink.c index ac01df9d2..b8b15e441 100644 --- a/lib/src/phy/io/netsink.c +++ b/lib/src/phy/io/netsink.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/io/netsource.c b/lib/src/phy/io/netsource.c index 62fe6734b..1cb779eed 100644 --- a/lib/src/phy/io/netsource.c +++ b/lib/src/phy/io/netsource.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/mimo/CMakeLists.txt b/lib/src/phy/mimo/CMakeLists.txt index f909a60a9..5b6199f03 100644 --- a/lib/src/phy/mimo/CMakeLists.txt +++ b/lib/src/phy/mimo/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/mimo/layermap.c b/lib/src/phy/mimo/layermap.c index d707d3573..180deb1d7 100644 --- a/lib/src/phy/mimo/layermap.c +++ b/lib/src/phy/mimo/layermap.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/mimo/precoding.c b/lib/src/phy/mimo/precoding.c index da385b401..f49405fa0 100644 --- a/lib/src/phy/mimo/precoding.c +++ b/lib/src/phy/mimo/precoding.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/mimo/test/CMakeLists.txt b/lib/src/phy/mimo/test/CMakeLists.txt index f33435b12..80d2ba749 100644 --- a/lib/src/phy/mimo/test/CMakeLists.txt +++ b/lib/src/phy/mimo/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/mimo/test/layermap_test.c b/lib/src/phy/mimo/test/layermap_test.c index c931498bb..27776a16e 100644 --- a/lib/src/phy/mimo/test/layermap_test.c +++ b/lib/src/phy/mimo/test/layermap_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/mimo/test/pmi_select_test.c b/lib/src/phy/mimo/test/pmi_select_test.c index a40723d34..b2bdf5ef2 100644 --- a/lib/src/phy/mimo/test/pmi_select_test.c +++ b/lib/src/phy/mimo/test/pmi_select_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/mimo/test/pmi_select_test.h b/lib/src/phy/mimo/test/pmi_select_test.h index c9c2ef5b3..5a16185f5 100644 --- a/lib/src/phy/mimo/test/pmi_select_test.h +++ b/lib/src/phy/mimo/test/pmi_select_test.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/mimo/test/precoder_test.c b/lib/src/phy/mimo/test/precoder_test.c index 8ec54fe20..e3d01c9fc 100644 --- a/lib/src/phy/mimo/test/precoder_test.c +++ b/lib/src/phy/mimo/test/precoder_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/modem/CMakeLists.txt b/lib/src/phy/modem/CMakeLists.txt index f7576161a..4d6b6a152 100644 --- a/lib/src/phy/modem/CMakeLists.txt +++ b/lib/src/phy/modem/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/modem/demod_hard.c b/lib/src/phy/modem/demod_hard.c index 76f54236d..a054957ad 100644 --- a/lib/src/phy/modem/demod_hard.c +++ b/lib/src/phy/modem/demod_hard.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include diff --git a/lib/src/phy/modem/demod_soft.c b/lib/src/phy/modem/demod_soft.c index 2d376f2e8..1f1005cfc 100644 --- a/lib/src/phy/modem/demod_soft.c +++ b/lib/src/phy/modem/demod_soft.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include diff --git a/lib/src/phy/modem/hard_demod_lte.c b/lib/src/phy/modem/hard_demod_lte.c index c1cf36283..2f0d0840f 100644 --- a/lib/src/phy/modem/hard_demod_lte.c +++ b/lib/src/phy/modem/hard_demod_lte.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/modem/hard_demod_lte.h b/lib/src/phy/modem/hard_demod_lte.h index b5ce8fca2..1a0eeffe5 100644 --- a/lib/src/phy/modem/hard_demod_lte.h +++ b/lib/src/phy/modem/hard_demod_lte.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/modem/lte_tables.c b/lib/src/phy/modem/lte_tables.c index d15fa36fb..8039c9d6c 100644 --- a/lib/src/phy/modem/lte_tables.c +++ b/lib/src/phy/modem/lte_tables.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/modem/lte_tables.h b/lib/src/phy/modem/lte_tables.h index cccb0a04c..e9451afbe 100644 --- a/lib/src/phy/modem/lte_tables.h +++ b/lib/src/phy/modem/lte_tables.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #define BPSK_LEVEL 1/sqrt(2) #define QPSK_LEVEL 1/sqrt(2) diff --git a/lib/src/phy/modem/mod.c b/lib/src/phy/modem/mod.c index 3c70f1df5..6639bda4e 100644 --- a/lib/src/phy/modem/mod.c +++ b/lib/src/phy/modem/mod.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/modem/modem_table.c b/lib/src/phy/modem/modem_table.c index c19e52e77..907078175 100644 --- a/lib/src/phy/modem/modem_table.c +++ b/lib/src/phy/modem/modem_table.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/modem/test/CMakeLists.txt b/lib/src/phy/modem/test/CMakeLists.txt index 4d28d2fca..2261e2c85 100644 --- a/lib/src/phy/modem/test/CMakeLists.txt +++ b/lib/src/phy/modem/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/modem/test/modem_test.c b/lib/src/phy/modem/test/modem_test.c index 6ae8200c6..e0393e51d 100644 --- a/lib/src/phy/modem/test/modem_test.c +++ b/lib/src/phy/modem/test/modem_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/modem/test/soft_demod_test.c b/lib/src/phy/modem/test/soft_demod_test.c index e6f9e28e9..4a3224f2a 100644 --- a/lib/src/phy/modem/test/soft_demod_test.c +++ b/lib/src/phy/modem/test/soft_demod_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/CMakeLists.txt b/lib/src/phy/phch/CMakeLists.txt index a0a7169cd..67639fc4a 100644 --- a/lib/src/phy/phch/CMakeLists.txt +++ b/lib/src/phy/phch/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/phch/cqi.c b/lib/src/phy/phch/cqi.c index 4e3d61ab9..52115d135 100644 --- a/lib/src/phy/phch/cqi.c +++ b/lib/src/phy/phch/cqi.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/dci.c b/lib/src/phy/phch/dci.c index 1623d7c87..2f76ad014 100644 --- a/lib/src/phy/phch/dci.c +++ b/lib/src/phy/phch/dci.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pbch.c b/lib/src/phy/phch/pbch.c index af8add1dc..fe1f115d4 100644 --- a/lib/src/phy/phch/pbch.c +++ b/lib/src/phy/phch/pbch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pcfich.c b/lib/src/phy/phch/pcfich.c index d14bef7de..4db7bf463 100644 --- a/lib/src/phy/phch/pcfich.c +++ b/lib/src/phy/phch/pcfich.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pdcch.c b/lib/src/phy/phch/pdcch.c index facc4e969..10d429948 100644 --- a/lib/src/phy/phch/pdcch.c +++ b/lib/src/phy/phch/pdcch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pdsch.c b/lib/src/phy/phch/pdsch.c index 46683e84b..06ab8b99f 100644 --- a/lib/src/phy/phch/pdsch.c +++ b/lib/src/phy/phch/pdsch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/phich.c b/lib/src/phy/phch/phich.c index 78a905df1..8f887afd2 100644 --- a/lib/src/phy/phch/phich.c +++ b/lib/src/phy/phch/phich.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pmch.c b/lib/src/phy/phch/pmch.c index 626e648cf..75e788aa0 100644 --- a/lib/src/phy/phch/pmch.c +++ b/lib/src/phy/phch/pmch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/prach.c b/lib/src/phy/phch/prach.c index d9b8ec2bd..97fb04441 100644 --- a/lib/src/phy/phch/prach.c +++ b/lib/src/phy/phch/prach.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/prb_dl.c b/lib/src/phy/phch/prb_dl.c index ac8d6f346..069806ba6 100644 --- a/lib/src/phy/phch/prb_dl.c +++ b/lib/src/phy/phch/prb_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include diff --git a/lib/src/phy/phch/prb_dl.h b/lib/src/phy/phch/prb_dl.h index 48613bed0..9de4880ed 100644 --- a/lib/src/phy/phch/prb_dl.h +++ b/lib/src/phy/phch/prb_dl.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pucch.c b/lib/src/phy/phch/pucch.c index cbb346338..44c19c06c 100644 --- a/lib/src/phy/phch/pucch.c +++ b/lib/src/phy/phch/pucch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/pusch.c b/lib/src/phy/phch/pusch.c index 357330dee..6cf003c91 100644 --- a/lib/src/phy/phch/pusch.c +++ b/lib/src/phy/phch/pusch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/ra.c b/lib/src/phy/phch/ra.c index e0a228c37..848a8ecd6 100644 --- a/lib/src/phy/phch/ra.c +++ b/lib/src/phy/phch/ra.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/regs.c b/lib/src/phy/phch/regs.c index 4f712f89e..6032d53eb 100644 --- a/lib/src/phy/phch/regs.c +++ b/lib/src/phy/phch/regs.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/sch.c b/lib/src/phy/phch/sch.c index 4be298f92..c8f89f1ed 100644 --- a/lib/src/phy/phch/sch.c +++ b/lib/src/phy/phch/sch.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/sequences.c b/lib/src/phy/phch/sequences.c index aa6970555..ba9299558 100644 --- a/lib/src/phy/phch/sequences.c +++ b/lib/src/phy/phch/sequences.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include "srslte/phy/common/phy_common.h" #include "srslte/phy/common/sequence.h" diff --git a/lib/src/phy/phch/tbs_tables.h b/lib/src/phy/phch/tbs_tables.h index 2f356c371..98f0c8de0 100644 --- a/lib/src/phy/phch/tbs_tables.h +++ b/lib/src/phy/phch/tbs_tables.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/CMakeLists.txt b/lib/src/phy/phch/test/CMakeLists.txt index 15d945238..2730b6049 100644 --- a/lib/src/phy/phch/test/CMakeLists.txt +++ b/lib/src/phy/phch/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/phch/test/pbch_file_test.c b/lib/src/phy/phch/test/pbch_file_test.c index cedf9d931..6ee45252b 100644 --- a/lib/src/phy/phch/test/pbch_file_test.c +++ b/lib/src/phy/phch/test/pbch_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pbch_test.c b/lib/src/phy/phch/test/pbch_test.c index 039e23657..ea3ec6a77 100644 --- a/lib/src/phy/phch/test/pbch_test.c +++ b/lib/src/phy/phch/test/pbch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pcfich_file_test.c b/lib/src/phy/phch/test/pcfich_file_test.c index ea0874af6..056e15904 100644 --- a/lib/src/phy/phch/test/pcfich_file_test.c +++ b/lib/src/phy/phch/test/pcfich_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pcfich_test.c b/lib/src/phy/phch/test/pcfich_test.c index 1a428972f..d4d32eb42 100644 --- a/lib/src/phy/phch/test/pcfich_test.c +++ b/lib/src/phy/phch/test/pcfich_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pdcch_file_test.c b/lib/src/phy/phch/test/pdcch_file_test.c index f0540227c..daea48624 100644 --- a/lib/src/phy/phch/test/pdcch_file_test.c +++ b/lib/src/phy/phch/test/pdcch_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pdcch_test.c b/lib/src/phy/phch/test/pdcch_test.c index 68a43ed10..2d6cdc63c 100644 --- a/lib/src/phy/phch/test/pdcch_test.c +++ b/lib/src/phy/phch/test/pdcch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pdsch_pdcch_file_test.c b/lib/src/phy/phch/test/pdsch_pdcch_file_test.c index 8ef5f2f5d..5aeb7059b 100644 --- a/lib/src/phy/phch/test/pdsch_pdcch_file_test.c +++ b/lib/src/phy/phch/test/pdsch_pdcch_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pdsch_test.c b/lib/src/phy/phch/test/pdsch_test.c index fef074b8f..663c930d1 100644 --- a/lib/src/phy/phch/test/pdsch_test.c +++ b/lib/src/phy/phch/test/pdsch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/phich_file_test.c b/lib/src/phy/phch/test/phich_file_test.c index b70f556dd..3a0f14d6f 100644 --- a/lib/src/phy/phch/test/phich_file_test.c +++ b/lib/src/phy/phch/test/phich_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/phich_test.c b/lib/src/phy/phch/test/phich_test.c index 61a43c7ef..a0e87983a 100644 --- a/lib/src/phy/phch/test/phich_test.c +++ b/lib/src/phy/phch/test/phich_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pmch_file_test.c b/lib/src/phy/phch/test/pmch_file_test.c index bdf29dc25..051cdc50d 100644 --- a/lib/src/phy/phch/test/pmch_file_test.c +++ b/lib/src/phy/phch/test/pmch_file_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pmch_test.c b/lib/src/phy/phch/test/pmch_test.c index af7117f9f..3e631e8ef 100644 --- a/lib/src/phy/phch/test/pmch_test.c +++ b/lib/src/phy/phch/test/pmch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/prach_test.c b/lib/src/phy/phch/test/prach_test.c index cb14c1510..b866c1eff 100644 --- a/lib/src/phy/phch/test/prach_test.c +++ b/lib/src/phy/phch/test/prach_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/phch/test/prach_test_multi.c b/lib/src/phy/phch/test/prach_test_multi.c index 7313cf7e4..8d8817977 100644 --- a/lib/src/phy/phch/test/prach_test_multi.c +++ b/lib/src/phy/phch/test/prach_test_multi.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/prach_test_usrp.c b/lib/src/phy/phch/test/prach_test_usrp.c index 79811ca54..55107a650 100644 --- a/lib/src/phy/phch/test/prach_test_usrp.c +++ b/lib/src/phy/phch/test/prach_test_usrp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/phch/test/pucch_test.c b/lib/src/phy/phch/test/pucch_test.c index 0125f2b99..f4de4b861 100644 --- a/lib/src/phy/phch/test/pucch_test.c +++ b/lib/src/phy/phch/test/pucch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/test/pusch_test.c b/lib/src/phy/phch/test/pusch_test.c index 0ad1a9b34..3d00e9104 100644 --- a/lib/src/phy/phch/test/pusch_test.c +++ b/lib/src/phy/phch/test/pusch_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/phch/uci.c b/lib/src/phy/phch/uci.c index 7fc3945ae..8579672eb 100644 --- a/lib/src/phy/phch/uci.c +++ b/lib/src/phy/phch/uci.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/resampling/CMakeLists.txt b/lib/src/phy/resampling/CMakeLists.txt index ef6513cbf..9689e5ba5 100644 --- a/lib/src/phy/resampling/CMakeLists.txt +++ b/lib/src/phy/resampling/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/resampling/decim.c b/lib/src/phy/resampling/decim.c index eba486a28..1e4de45c3 100644 --- a/lib/src/phy/resampling/decim.c +++ b/lib/src/phy/resampling/decim.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/resampling/interp.c b/lib/src/phy/resampling/interp.c index 00d4e55f4..a1509728b 100644 --- a/lib/src/phy/resampling/interp.c +++ b/lib/src/phy/resampling/interp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/resampling/resample_arb.c b/lib/src/phy/resampling/resample_arb.c index 5cea28ed2..1acd9eb45 100644 --- a/lib/src/phy/resampling/resample_arb.c +++ b/lib/src/phy/resampling/resample_arb.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/resampling/test/CMakeLists.txt b/lib/src/phy/resampling/test/CMakeLists.txt index f0314b643..5f4fc3e93 100644 --- a/lib/src/phy/resampling/test/CMakeLists.txt +++ b/lib/src/phy/resampling/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/resampling/test/resample_arb_bench.c b/lib/src/phy/resampling/test/resample_arb_bench.c index e9ef3c442..27eb8709f 100644 --- a/lib/src/phy/resampling/test/resample_arb_bench.c +++ b/lib/src/phy/resampling/test/resample_arb_bench.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/resampling/test/resample_arb_test.c b/lib/src/phy/resampling/test/resample_arb_test.c index 1473f9e13..eb00424f1 100644 --- a/lib/src/phy/resampling/test/resample_arb_test.c +++ b/lib/src/phy/resampling/test/resample_arb_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/CMakeLists.txt b/lib/src/phy/rf/CMakeLists.txt index f4e374e06..9ae3494b7 100644 --- a/lib/src/phy/rf/CMakeLists.txt +++ b/lib/src/phy/rf/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/rf/rf_blade_imp.c b/lib/src/phy/rf/rf_blade_imp.c index dc50b0882..9ae0872b3 100644 --- a/lib/src/phy/rf/rf_blade_imp.c +++ b/lib/src/phy/rf/rf_blade_imp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_blade_imp.h b/lib/src/phy/rf/rf_blade_imp.h index 1b546cf85..e3bd48e05 100644 --- a/lib/src/phy/rf/rf_blade_imp.h +++ b/lib/src/phy/rf/rf_blade_imp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include "srslte/config.h" #include "srslte/phy/rf/rf.h" diff --git a/lib/src/phy/rf/rf_dev.h b/lib/src/phy/rf/rf_dev.h index 7cf9b5e1e..94a81d663 100644 --- a/lib/src/phy/rf/rf_dev.h +++ b/lib/src/phy/rf/rf_dev.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - /* RF frontend API */ typedef struct { const char *name; diff --git a/lib/src/phy/rf/rf_helper.h b/lib/src/phy/rf/rf_helper.h index 997ad9b3d..ddfbf1adc 100644 --- a/lib/src/phy/rf/rf_helper.h +++ b/lib/src/phy/rf/rf_helper.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_imp.c b/lib/src/phy/rf/rf_imp.c index 55d53022a..d60d9d2b6 100644 --- a/lib/src/phy/rf/rf_imp.c +++ b/lib/src/phy/rf/rf_imp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_soapy_imp.c b/lib/src/phy/rf/rf_soapy_imp.c index ebbfc9225..07c24e878 100644 --- a/lib/src/phy/rf/rf_soapy_imp.c +++ b/lib/src/phy/rf/rf_soapy_imp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/rf/rf_soapy_imp.h b/lib/src/phy/rf/rf_soapy_imp.h index b69e73c63..865883634 100644 --- a/lib/src/phy/rf/rf_soapy_imp.h +++ b/lib/src/phy/rf/rf_soapy_imp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_uhd_imp.c b/lib/src/phy/rf/rf_uhd_imp.c index c353272fa..b6a7c5fee 100644 --- a/lib/src/phy/rf/rf_uhd_imp.c +++ b/lib/src/phy/rf/rf_uhd_imp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_uhd_imp.h b/lib/src/phy/rf/rf_uhd_imp.h index e10960a43..083679527 100644 --- a/lib/src/phy/rf/rf_uhd_imp.h +++ b/lib/src/phy/rf/rf_uhd_imp.h @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_utils.c b/lib/src/phy/rf/rf_utils.c index 1365853d2..cef343556 100644 --- a/lib/src/phy/rf/rf_utils.c +++ b/lib/src/phy/rf/rf_utils.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_zmq_imp.c b/lib/src/phy/rf/rf_zmq_imp.c index 944704691..216daba81 100644 --- a/lib/src/phy/rf/rf_zmq_imp.c +++ b/lib/src/phy/rf/rf_zmq_imp.c @@ -1,12 +1,7 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_zmq_imp.h b/lib/src/phy/rf/rf_zmq_imp.h index f316bf8e2..06f49c28f 100644 --- a/lib/src/phy/rf/rf_zmq_imp.h +++ b/lib/src/phy/rf/rf_zmq_imp.h @@ -1,12 +1,7 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/rf_zmq_test.c b/lib/src/phy/rf/rf_zmq_test.c index daf56d097..5909ac9e2 100644 --- a/lib/src/phy/rf/rf_zmq_test.c +++ b/lib/src/phy/rf/rf_zmq_test.c @@ -1,12 +1,7 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/rf/uhd_c_api.h b/lib/src/phy/rf/uhd_c_api.h index 8f6cb2743..270206642 100644 --- a/lib/src/phy/rf/uhd_c_api.h +++ b/lib/src/phy/rf/uhd_c_api.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/phy/scrambling/CMakeLists.txt b/lib/src/phy/scrambling/CMakeLists.txt index b8c4941ad..b60e3acd2 100644 --- a/lib/src/phy/scrambling/CMakeLists.txt +++ b/lib/src/phy/scrambling/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/scrambling/scrambling.c b/lib/src/phy/scrambling/scrambling.c index 4aba1cb83..f1394d3c7 100644 --- a/lib/src/phy/scrambling/scrambling.c +++ b/lib/src/phy/scrambling/scrambling.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/scrambling/test/CMakeLists.txt b/lib/src/phy/scrambling/test/CMakeLists.txt index 8dd63d4a2..2b2fcf375 100644 --- a/lib/src/phy/scrambling/test/CMakeLists.txt +++ b/lib/src/phy/scrambling/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/scrambling/test/scrambling_test.c b/lib/src/phy/scrambling/test/scrambling_test.c index c380b06c5..455c8c7d1 100644 --- a/lib/src/phy/scrambling/test/scrambling_test.c +++ b/lib/src/phy/scrambling/test/scrambling_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/CMakeLists.txt b/lib/src/phy/sync/CMakeLists.txt index 706efde38..34660b2f6 100644 --- a/lib/src/phy/sync/CMakeLists.txt +++ b/lib/src/phy/sync/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/sync/cfo.c b/lib/src/phy/sync/cfo.c index c45007cdb..1b2d75a75 100644 --- a/lib/src/phy/sync/cfo.c +++ b/lib/src/phy/sync/cfo.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/cp.c b/lib/src/phy/sync/cp.c index bb3005804..087cfdcba 100644 --- a/lib/src/phy/sync/cp.c +++ b/lib/src/phy/sync/cp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/find_sss.c b/lib/src/phy/sync/find_sss.c index 6695d70c2..7eec97b24 100644 --- a/lib/src/phy/sync/find_sss.c +++ b/lib/src/phy/sync/find_sss.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/sync/gen_sss.c b/lib/src/phy/sync/gen_sss.c index 421d9e9e6..d63f38e9f 100644 --- a/lib/src/phy/sync/gen_sss.c +++ b/lib/src/phy/sync/gen_sss.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include "srslte/phy/sync/sss.h" diff --git a/lib/src/phy/sync/pss.c b/lib/src/phy/sync/pss.c index 2dce17edb..8ace73fb1 100644 --- a/lib/src/phy/sync/pss.c +++ b/lib/src/phy/sync/pss.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/sync/sfo.c b/lib/src/phy/sync/sfo.c index 7e630038b..36e01b447 100644 --- a/lib/src/phy/sync/sfo.c +++ b/lib/src/phy/sync/sfo.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include "srslte/phy/sync/sfo.h" diff --git a/lib/src/phy/sync/sss.c b/lib/src/phy/sync/sss.c index 501494b86..188cb04d3 100644 --- a/lib/src/phy/sync/sss.c +++ b/lib/src/phy/sync/sss.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/sync/sync.c b/lib/src/phy/sync/sync.c index 707a57fc3..8bf29c586 100644 --- a/lib/src/phy/sync/sync.c +++ b/lib/src/phy/sync/sync.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/test/CMakeLists.txt b/lib/src/phy/sync/test/CMakeLists.txt index 569098116..1f6ccabdb 100644 --- a/lib/src/phy/sync/test/CMakeLists.txt +++ b/lib/src/phy/sync/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/sync/test/cfo_test.c b/lib/src/phy/sync/test/cfo_test.c index bb8498873..bdeccacf2 100644 --- a/lib/src/phy/sync/test/cfo_test.c +++ b/lib/src/phy/sync/test/cfo_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/test/pss_file.c b/lib/src/phy/sync/test/pss_file.c index 9e0425473..a596d88d8 100644 --- a/lib/src/phy/sync/test/pss_file.c +++ b/lib/src/phy/sync/test/pss_file.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/test/pss_usrp.c b/lib/src/phy/sync/test/pss_usrp.c index a76c3a248..f86ea9a58 100644 --- a/lib/src/phy/sync/test/pss_usrp.c +++ b/lib/src/phy/sync/test/pss_usrp.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/sync/test/sync_test.c b/lib/src/phy/sync/test/sync_test.c index f99837c7c..7f90a4f2c 100644 --- a/lib/src/phy/sync/test/sync_test.c +++ b/lib/src/phy/sync/test/sync_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ue/CMakeLists.txt b/lib/src/phy/ue/CMakeLists.txt index 3072b3a43..496750c1f 100644 --- a/lib/src/phy/ue/CMakeLists.txt +++ b/lib/src/phy/ue/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/ue/ue_cell_search.c b/lib/src/phy/ue/ue_cell_search.c index bdc7141b3..a52bb1670 100644 --- a/lib/src/phy/ue/ue_cell_search.c +++ b/lib/src/phy/ue/ue_cell_search.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ue/ue_dl.c b/lib/src/phy/ue/ue_dl.c index 9994f18e9..fe171a248 100644 --- a/lib/src/phy/ue/ue_dl.c +++ b/lib/src/phy/ue/ue_dl.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ue/ue_mib.c b/lib/src/phy/ue/ue_mib.c index 743c8ea4c..f973862ba 100644 --- a/lib/src/phy/ue/ue_mib.c +++ b/lib/src/phy/ue/ue_mib.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ue/ue_sync.c b/lib/src/phy/ue/ue_sync.c index 180e170c4..c91bc22b4 100644 --- a/lib/src/phy/ue/ue_sync.c +++ b/lib/src/phy/ue/ue_sync.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/ue/ue_ul.c b/lib/src/phy/ue/ue_ul.c index 45a276934..d4a801a7c 100644 --- a/lib/src/phy/ue/ue_ul.c +++ b/lib/src/phy/ue/ue_ul.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/CMakeLists.txt b/lib/src/phy/utils/CMakeLists.txt index 906d866b9..55ca7a632 100644 --- a/lib/src/phy/utils/CMakeLists.txt +++ b/lib/src/phy/utils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/utils/bit.c b/lib/src/phy/utils/bit.c index 674c1da81..82179a88b 100644 --- a/lib/src/phy/utils/bit.c +++ b/lib/src/phy/utils/bit.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/cexptab.c b/lib/src/phy/utils/cexptab.c index 0f9232e85..45a6cd529 100644 --- a/lib/src/phy/utils/cexptab.c +++ b/lib/src/phy/utils/cexptab.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/convolution.c b/lib/src/phy/utils/convolution.c index 3ad798a89..47aef16a0 100644 --- a/lib/src/phy/utils/convolution.c +++ b/lib/src/phy/utils/convolution.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/debug.c b/lib/src/phy/utils/debug.c index dc37800cd..a643e3ec9 100644 --- a/lib/src/phy/utils/debug.c +++ b/lib/src/phy/utils/debug.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/filter.c b/lib/src/phy/utils/filter.c index 7fa9635f5..a204f037b 100644 --- a/lib/src/phy/utils/filter.c +++ b/lib/src/phy/utils/filter.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/mat.c b/lib/src/phy/utils/mat.c index a1f303525..e58493151 100644 --- a/lib/src/phy/utils/mat.c +++ b/lib/src/phy/utils/mat.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/test/CMakeLists.txt b/lib/src/phy/utils/test/CMakeLists.txt index 1f5c66827..817e4ca67 100644 --- a/lib/src/phy/utils/test/CMakeLists.txt +++ b/lib/src/phy/utils/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/phy/utils/test/dft_test.c b/lib/src/phy/utils/test/dft_test.c index b880f8027..0b1e25225 100644 --- a/lib/src/phy/utils/test/dft_test.c +++ b/lib/src/phy/utils/test/dft_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/test/mat_test.c b/lib/src/phy/utils/test/mat_test.c index 6ee1c451a..2edb9f34f 100644 --- a/lib/src/phy/utils/test/mat_test.c +++ b/lib/src/phy/utils/test/mat_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/test/vector_test.c b/lib/src/phy/utils/test/vector_test.c index 88f6ae7b9..c42eb56e5 100644 --- a/lib/src/phy/utils/test/vector_test.c +++ b/lib/src/phy/utils/test/vector_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/phy/utils/vector.c b/lib/src/phy/utils/vector.c index e4328d314..4305b109b 100644 --- a/lib/src/phy/utils/vector.c +++ b/lib/src/phy/utils/vector.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/phy/utils/vector_simd.c b/lib/src/phy/utils/vector_simd.c index 72cc91336..a92861c4b 100644 --- a/lib/src/phy/utils/vector_simd.c +++ b/lib/src/phy/utils/vector_simd.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -24,7 +19,6 @@ * */ - #include #include #include diff --git a/lib/src/radio/CMakeLists.txt b/lib/src/radio/CMakeLists.txt index 5ef709a7b..ca8c87a45 100644 --- a/lib/src/radio/CMakeLists.txt +++ b/lib/src/radio/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/radio/radio.cc b/lib/src/radio/radio.cc index 975cc9535..a0b301b5b 100644 --- a/lib/src/radio/radio.cc +++ b/lib/src/radio/radio.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/src/radio/test/CMakeLists.txt b/lib/src/radio/test/CMakeLists.txt index 005291bba..0888c1f09 100644 --- a/lib/src/radio/test/CMakeLists.txt +++ b/lib/src/radio/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/radio/test/benchmark_radio.cc b/lib/src/radio/test/benchmark_radio.cc index 4b374ee31..f438f7c33 100644 --- a/lib/src/radio/test/benchmark_radio.cc +++ b/lib/src/radio/test/benchmark_radio.cc @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/src/upper/CMakeLists.txt b/lib/src/upper/CMakeLists.txt index f366edea9..4b2da8774 100644 --- a/lib/src/upper/CMakeLists.txt +++ b/lib/src/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/src/upper/gtpu.cc b/lib/src/upper/gtpu.cc index 537b1043c..17eda506a 100644 --- a/lib/src/upper/gtpu.cc +++ b/lib/src/upper/gtpu.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/gtpu.h" #include "srslte/common/int_helpers.h" diff --git a/lib/src/upper/pdcp.cc b/lib/src/upper/pdcp.cc index 7fcc22f64..940a90df2 100644 --- a/lib/src/upper/pdcp.cc +++ b/lib/src/upper/pdcp.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/pdcp.h" namespace srslte { diff --git a/lib/src/upper/pdcp_entity.cc b/lib/src/upper/pdcp_entity.cc index 4d9334d62..e9bcec85f 100644 --- a/lib/src/upper/pdcp_entity.cc +++ b/lib/src/upper/pdcp_entity.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/pdcp_entity.h" #include "srslte/common/security.h" diff --git a/lib/src/upper/rlc.cc b/lib/src/upper/rlc.cc index 9a9966d45..f33f63865 100644 --- a/lib/src/upper/rlc.cc +++ b/lib/src/upper/rlc.cc @@ -1,21 +1,16 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 PARTICRXAR PURPOSE. See the + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * A copy of the GNU Affero General Public License can be found in @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/rlc.h" #include "srslte/upper/rlc_tm.h" #include "srslte/upper/rlc_um.h" diff --git a/lib/src/upper/rlc_am.cc b/lib/src/upper/rlc_am.cc index 5fe4cad13..dea80256f 100644 --- a/lib/src/upper/rlc_am.cc +++ b/lib/src/upper/rlc_am.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/rlc_am.h" #include diff --git a/lib/src/upper/rlc_tm.cc b/lib/src/upper/rlc_tm.cc index 59f90526a..11aa4412f 100644 --- a/lib/src/upper/rlc_tm.cc +++ b/lib/src/upper/rlc_tm.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/rlc_tm.h" namespace srslte { diff --git a/lib/src/upper/rlc_um.cc b/lib/src/upper/rlc_um.cc index b07bd8389..bec8f1d17 100644 --- a/lib/src/upper/rlc_um.cc +++ b/lib/src/upper/rlc_um.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srslte/upper/rlc_um.h" #include #include diff --git a/lib/test/CMakeLists.txt b/lib/test/CMakeLists.txt index 90ed8e928..0cb8680d0 100644 --- a/lib/test/CMakeLists.txt +++ b/lib/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/test/asn1/CMakeLists.txt b/lib/test/asn1/CMakeLists.txt index 885329bd4..c5451bdf9 100644 --- a/lib/test/asn1/CMakeLists.txt +++ b/lib/test/asn1/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/test/asn1/s1ap_test.cc b/lib/test/asn1/s1ap_test.cc index 9cf92605f..217c5b43c 100644 --- a/lib/test/asn1/s1ap_test.cc +++ b/lib/test/asn1/s1ap_test.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE + * This file is part of srsLTE. * - * This file is part of the srsLTE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_m2ap_test.cc b/lib/test/asn1/srslte_asn1_m2ap_test.cc index 35ceb2ea2..f40556161 100644 --- a/lib/test/asn1/srslte_asn1_m2ap_test.cc +++ b/lib/test/asn1/srslte_asn1_m2ap_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_rrc_dl_ccch_test.cc b/lib/test/asn1/srslte_asn1_rrc_dl_ccch_test.cc index c2a45b2cc..96526ef28 100644 --- a/lib/test/asn1/srslte_asn1_rrc_dl_ccch_test.cc +++ b/lib/test/asn1/srslte_asn1_rrc_dl_ccch_test.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE + * This file is part of srsLTE. * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_rrc_dl_dcch_test.cc b/lib/test/asn1/srslte_asn1_rrc_dl_dcch_test.cc index 17fc64cef..9fd144e5f 100644 --- a/lib/test/asn1/srslte_asn1_rrc_dl_dcch_test.cc +++ b/lib/test/asn1/srslte_asn1_rrc_dl_dcch_test.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * +/* * Copyright 2013-2019 Software Radio Systems Limited * - * \section LICENSE + * This file is part of srsLTE. * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_rrc_mcch_test.cc b/lib/test/asn1/srslte_asn1_rrc_mcch_test.cc index 8af37b184..5428fb95d 100644 --- a/lib/test/asn1/srslte_asn1_rrc_mcch_test.cc +++ b/lib/test/asn1/srslte_asn1_rrc_mcch_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_rrc_meas_test.cc b/lib/test/asn1/srslte_asn1_rrc_meas_test.cc index 018a4af02..f6d283bdc 100644 --- a/lib/test/asn1/srslte_asn1_rrc_meas_test.cc +++ b/lib/test/asn1/srslte_asn1_rrc_meas_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/asn1/srslte_asn1_rrc_ul_dcch_test.cc b/lib/test/asn1/srslte_asn1_rrc_ul_dcch_test.cc index 4742cad2c..a977eb5dc 100644 --- a/lib/test/asn1/srslte_asn1_rrc_ul_dcch_test.cc +++ b/lib/test/asn1/srslte_asn1_rrc_ul_dcch_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/common/CMakeLists.txt b/lib/test/common/CMakeLists.txt index c868cba68..b2dca455d 100644 --- a/lib/test/common/CMakeLists.txt +++ b/lib/test/common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/test/common/bcd_helpers_test.cc b/lib/test/common/bcd_helpers_test.cc index c8c563150..5abd0d4f4 100644 --- a/lib/test/common/bcd_helpers_test.cc +++ b/lib/test/common/bcd_helpers_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/common/log_filter_test.cc b/lib/test/common/log_filter_test.cc index 350e42837..680164a2f 100644 --- a/lib/test/common/log_filter_test.cc +++ b/lib/test/common/log_filter_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/common/logger_test.cc b/lib/test/common/logger_test.cc index 895db4e77..573144c6e 100644 --- a/lib/test/common/logger_test.cc +++ b/lib/test/common/logger_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/common/msg_queue_test.cc b/lib/test/common/msg_queue_test.cc index bc1d9f06c..b5948fe5c 100644 --- a/lib/test/common/msg_queue_test.cc +++ b/lib/test/common/msg_queue_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/common/timeout_test.cc b/lib/test/common/timeout_test.cc index 4bde95f66..41f594b30 100644 --- a/lib/test/common/timeout_test.cc +++ b/lib/test/common/timeout_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include #include "srslte/common/timeout.h" diff --git a/lib/test/phy/CMakeLists.txt b/lib/test/phy/CMakeLists.txt index af98fc201..900b290cd 100644 --- a/lib/test/phy/CMakeLists.txt +++ b/lib/test/phy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/test/phy/phy_dl_test.c b/lib/test/phy/phy_dl_test.c index 8a8946046..ad9707bd8 100644 --- a/lib/test/phy/phy_dl_test.c +++ b/lib/test/phy/phy_dl_test.c @@ -1,12 +1,7 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT - * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsLTE library. + * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/lib/test/upper/CMakeLists.txt b/lib/test/upper/CMakeLists.txt index 7abbacf90..f52bf4be0 100644 --- a/lib/test/upper/CMakeLists.txt +++ b/lib/test/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/lib/test/upper/rlc_am_control_test.cc b/lib/test/upper/rlc_am_control_test.cc index 874b256d1..e8b1721dd 100644 --- a/lib/test/upper/rlc_am_control_test.cc +++ b/lib/test/upper/rlc_am_control_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/upper/rlc_am_data_test.cc b/lib/test/upper/rlc_am_data_test.cc index ad3146582..a4ba21f75 100644 --- a/lib/test/upper/rlc_am_data_test.cc +++ b/lib/test/upper/rlc_am_data_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/upper/rlc_am_test.cc b/lib/test/upper/rlc_am_test.cc index 907fb1128..357582d3e 100644 --- a/lib/test/upper/rlc_am_test.cc +++ b/lib/test/upper/rlc_am_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/upper/rlc_stress_test.cc b/lib/test/upper/rlc_stress_test.cc index 0846a61fe..b0ddf223e 100644 --- a/lib/test/upper/rlc_stress_test.cc +++ b/lib/test/upper/rlc_stress_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/upper/rlc_um_data_test.cc b/lib/test/upper/rlc_um_data_test.cc index bde751bdc..5cbf7bcdf 100644 --- a/lib/test/upper/rlc_um_data_test.cc +++ b/lib/test/upper/rlc_um_data_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/lib/test/upper/rlc_um_test.cc b/lib/test/upper/rlc_um_test.cc index 07176dd46..c8b6536af 100644 --- a/lib/test/upper/rlc_um_test.cc +++ b/lib/test/upper/rlc_um_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/CMakeLists.txt b/srsenb/CMakeLists.txt index 8a9f085d3..bb336bc14 100644 --- a/srsenb/CMakeLists.txt +++ b/srsenb/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsenb/hdr/cfg_parser.h b/srsenb/hdr/cfg_parser.h index d399ddae3..161ccdd67 100644 --- a/srsenb/hdr/cfg_parser.h +++ b/srsenb/hdr/cfg_parser.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/enb.h b/srsenb/hdr/enb.h index 0e400ceaf..3e1aa8941 100644 --- a/srsenb/hdr/enb.h +++ b/srsenb/hdr/enb.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/mac.h b/srsenb/hdr/mac/mac.h index 3211928c1..16cedfb94 100644 --- a/srsenb/hdr/mac/mac.h +++ b/srsenb/hdr/mac/mac.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/mac_metrics.h b/srsenb/hdr/mac/mac_metrics.h index d63734d2a..e012ede2d 100644 --- a/srsenb/hdr/mac/mac_metrics.h +++ b/srsenb/hdr/mac/mac_metrics.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/scheduler.h b/srsenb/hdr/mac/scheduler.h index 8a0461a46..65b737b9a 100644 --- a/srsenb/hdr/mac/scheduler.h +++ b/srsenb/hdr/mac/scheduler.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/scheduler_harq.h b/srsenb/hdr/mac/scheduler_harq.h index d8ac01083..e9957a6d3 100644 --- a/srsenb/hdr/mac/scheduler_harq.h +++ b/srsenb/hdr/mac/scheduler_harq.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/scheduler_metric.h b/srsenb/hdr/mac/scheduler_metric.h index 38ab86db4..b7f29f011 100644 --- a/srsenb/hdr/mac/scheduler_metric.h +++ b/srsenb/hdr/mac/scheduler_metric.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/scheduler_ue.h b/srsenb/hdr/mac/scheduler_ue.h index 75cd4998e..97368c619 100644 --- a/srsenb/hdr/mac/scheduler_ue.h +++ b/srsenb/hdr/mac/scheduler_ue.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/mac/ue.h b/srsenb/hdr/mac/ue.h index 553b44e92..b02e4f651 100644 --- a/srsenb/hdr/mac/ue.h +++ b/srsenb/hdr/mac/ue.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/metrics_csv.h b/srsenb/hdr/metrics_csv.h index 82d8c065b..cd68ed76c 100644 --- a/srsenb/hdr/metrics_csv.h +++ b/srsenb/hdr/metrics_csv.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/metrics_stdout.h b/srsenb/hdr/metrics_stdout.h index 307a64a0d..b5dbbe5b0 100644 --- a/srsenb/hdr/metrics_stdout.h +++ b/srsenb/hdr/metrics_stdout.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - /****************************************************************************** * File: metrics_stdout.h * Description: Metrics class printing to stdout. diff --git a/srsenb/hdr/parser.h b/srsenb/hdr/parser.h index 2b84a840c..f466355c0 100644 --- a/srsenb/hdr/parser.h +++ b/srsenb/hdr/parser.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/phy/phy.h b/srsenb/hdr/phy/phy.h index e1d3db3f0..06ef8f52f 100644 --- a/srsenb/hdr/phy/phy.h +++ b/srsenb/hdr/phy/phy.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/phy/phy_metrics.h b/srsenb/hdr/phy/phy_metrics.h index 5a45baf5f..b794f1860 100644 --- a/srsenb/hdr/phy/phy_metrics.h +++ b/srsenb/hdr/phy/phy_metrics.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/phy/prach_worker.h b/srsenb/hdr/phy/prach_worker.h index 87962df18..33bf9a70c 100644 --- a/srsenb/hdr/phy/prach_worker.h +++ b/srsenb/hdr/phy/prach_worker.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/phy/txrx.h b/srsenb/hdr/phy/txrx.h index 788683e71..99142bb9d 100644 --- a/srsenb/hdr/phy/txrx.h +++ b/srsenb/hdr/phy/txrx.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/common_enb.h b/srsenb/hdr/upper/common_enb.h index 2458cbc19..c2b155c28 100644 --- a/srsenb/hdr/upper/common_enb.h +++ b/srsenb/hdr/upper/common_enb.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/gtpu.h b/srsenb/hdr/upper/gtpu.h index 7dde7c547..4a12188fc 100644 --- a/srsenb/hdr/upper/gtpu.h +++ b/srsenb/hdr/upper/gtpu.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/pdcp.h b/srsenb/hdr/upper/pdcp.h index a07003fc9..f5510f7d8 100644 --- a/srsenb/hdr/upper/pdcp.h +++ b/srsenb/hdr/upper/pdcp.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/rlc.h b/srsenb/hdr/upper/rlc.h index 6ca7ee195..bf8bd69cb 100644 --- a/srsenb/hdr/upper/rlc.h +++ b/srsenb/hdr/upper/rlc.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/rrc.h b/srsenb/hdr/upper/rrc.h index dfe992302..e06a02609 100644 --- a/srsenb/hdr/upper/rrc.h +++ b/srsenb/hdr/upper/rrc.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/rrc_metrics.h b/srsenb/hdr/upper/rrc_metrics.h index 7c388da01..ea3060e24 100644 --- a/srsenb/hdr/upper/rrc_metrics.h +++ b/srsenb/hdr/upper/rrc_metrics.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/s1ap.h b/srsenb/hdr/upper/s1ap.h index 498cea28d..7407ad977 100644 --- a/srsenb/hdr/upper/s1ap.h +++ b/srsenb/hdr/upper/s1ap.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/hdr/upper/s1ap_metrics.h b/srsenb/hdr/upper/s1ap_metrics.h index b73b0afa0..0d13bd6ab 100644 --- a/srsenb/hdr/upper/s1ap_metrics.h +++ b/srsenb/hdr/upper/s1ap_metrics.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/CMakeLists.txt b/srsenb/src/CMakeLists.txt index 04514f80e..f1976ab50 100644 --- a/srsenb/src/CMakeLists.txt +++ b/srsenb/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # diff --git a/srsenb/src/enb.cc b/srsenb/src/enb.cc index 7ad9a60df..8f64d3082 100644 --- a/srsenb/src/enb.cc +++ b/srsenb/src/enb.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/enb_cfg_parser.cc b/srsenb/src/enb_cfg_parser.cc index c6ef881c9..d7da60456 100644 --- a/srsenb/src/enb_cfg_parser.cc +++ b/srsenb/src/enb_cfg_parser.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/enb_cfg_parser.h b/srsenb/src/enb_cfg_parser.h index a87a9f330..724f84272 100644 --- a/srsenb/src/enb_cfg_parser.h +++ b/srsenb/src/enb_cfg_parser.h @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/CMakeLists.txt b/srsenb/src/mac/CMakeLists.txt index 8819c0bcb..d46c5a206 100644 --- a/srsenb/src/mac/CMakeLists.txt +++ b/srsenb/src/mac/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsenb/src/mac/mac.cc b/srsenb/src/mac/mac.cc index 174b4fb18..45f650cda 100644 --- a/srsenb/src/mac/mac.cc +++ b/srsenb/src/mac/mac.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/scheduler.cc b/srsenb/src/mac/scheduler.cc index fa8c5e6a4..bf2fa342e 100644 --- a/srsenb/src/mac/scheduler.cc +++ b/srsenb/src/mac/scheduler.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/scheduler_harq.cc b/srsenb/src/mac/scheduler_harq.cc index f24b2a327..6e14d065a 100644 --- a/srsenb/src/mac/scheduler_harq.cc +++ b/srsenb/src/mac/scheduler_harq.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/scheduler_metric.cc b/srsenb/src/mac/scheduler_metric.cc index 75d876332..3252d9774 100644 --- a/srsenb/src/mac/scheduler_metric.cc +++ b/srsenb/src/mac/scheduler_metric.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/scheduler_ue.cc b/srsenb/src/mac/scheduler_ue.cc index 1251fa5a7..bde192f14 100644 --- a/srsenb/src/mac/scheduler_ue.cc +++ b/srsenb/src/mac/scheduler_ue.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/mac/ue.cc b/srsenb/src/mac/ue.cc index 6708ef21a..f6fc35670 100644 --- a/srsenb/src/mac/ue.cc +++ b/srsenb/src/mac/ue.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/main.cc b/srsenb/src/main.cc index 7de8f83e2..78b0b8df8 100644 --- a/srsenb/src/main.cc +++ b/srsenb/src/main.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/metrics_csv.cc b/srsenb/src/metrics_csv.cc index bab96431f..acf5cda8d 100644 --- a/srsenb/src/metrics_csv.cc +++ b/srsenb/src/metrics_csv.cc @@ -1,20 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2015 The srsUE Developers. See the - * COPYRIGHT file at the top-level directory of this distribution. - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/metrics_stdout.cc b/srsenb/src/metrics_stdout.cc index 70dbeca81..ffd0b2692 100644 --- a/srsenb/src/metrics_stdout.cc +++ b/srsenb/src/metrics_stdout.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/parser.cc b/srsenb/src/parser.cc index 8a85789e9..5da623607 100644 --- a/srsenb/src/parser.cc +++ b/srsenb/src/parser.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/phy/CMakeLists.txt b/srsenb/src/phy/CMakeLists.txt index 5d46d3201..d450272b0 100644 --- a/srsenb/src/phy/CMakeLists.txt +++ b/srsenb/src/phy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsenb/src/phy/phy.cc b/srsenb/src/phy/phy.cc index e2331d768..7f15e0239 100644 --- a/srsenb/src/phy/phy.cc +++ b/srsenb/src/phy/phy.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/phy/prach_worker.cc b/srsenb/src/phy/prach_worker.cc index 04c04d51b..ef0f7d77f 100644 --- a/srsenb/src/phy/prach_worker.cc +++ b/srsenb/src/phy/prach_worker.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/phy/txrx.cc b/srsenb/src/phy/txrx.cc index 835e9023f..bbf8e5e6f 100644 --- a/srsenb/src/phy/txrx.cc +++ b/srsenb/src/phy/txrx.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/upper/CMakeLists.txt b/srsenb/src/upper/CMakeLists.txt index 59116bab7..a06b4bf55 100644 --- a/srsenb/src/upper/CMakeLists.txt +++ b/srsenb/src/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsenb/src/upper/gtpu.cc b/srsenb/src/upper/gtpu.cc index 2aa9dc001..b11fce87a 100644 --- a/srsenb/src/upper/gtpu.cc +++ b/srsenb/src/upper/gtpu.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/upper/pdcp.cc b/srsenb/src/upper/pdcp.cc index d229c08a5..58c5a27f2 100644 --- a/srsenb/src/upper/pdcp.cc +++ b/srsenb/src/upper/pdcp.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/upper/rlc.cc b/srsenb/src/upper/rlc.cc index 13898cd9f..f64707df3 100644 --- a/srsenb/src/upper/rlc.cc +++ b/srsenb/src/upper/rlc.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/upper/rrc.cc b/srsenb/src/upper/rrc.cc index 6e4a27941..ae79fdb07 100644 --- a/srsenb/src/upper/rrc.cc +++ b/srsenb/src/upper/rrc.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/src/upper/s1ap.cc b/srsenb/src/upper/s1ap.cc index b7d34d01e..4767ef0bf 100644 --- a/srsenb/src/upper/s1ap.cc +++ b/srsenb/src/upper/s1ap.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/test/CMakeLists.txt b/srsenb/test/CMakeLists.txt index d14805441..2617d87f0 100644 --- a/srsenb/test/CMakeLists.txt +++ b/srsenb/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # diff --git a/srsenb/test/mac/CMakeLists.txt b/srsenb/test/mac/CMakeLists.txt index 79b0f2040..da42d75e9 100644 --- a/srsenb/test/mac/CMakeLists.txt +++ b/srsenb/test/mac/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # diff --git a/srsenb/test/mac/scheduler_test.cc b/srsenb/test/mac/scheduler_test.cc index 50d4cb409..c3ae799b5 100644 --- a/srsenb/test/mac/scheduler_test.cc +++ b/srsenb/test/mac/scheduler_test.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -34,9 +29,6 @@ #include "srslte/common/log_filter.h" #include "srslte/radio/radio.h" #include "srslte/phy/utils/debug.h" - - - uint8_t sib1_payload[18] = {0x60,0x40,0x04,0x03,0x00,0x01,0x1a,0x2d,0x00,0x18,0x02,0x81,0x80,0x42,0x0c,0x80,0x00,0x00}; uint8_t sib2_payload[41] = {0x00,0x80,0x1c,0x31,0x18,0x6f,0xe1,0x20,0x00,0x35,0x84,0x8c, diff --git a/srsenb/test/mac/scheduler_test_rand.cc b/srsenb/test/mac/scheduler_test_rand.cc index dcc9d2dd8..13a69d52a 100644 --- a/srsenb/test/mac/scheduler_test_rand.cc +++ b/srsenb/test/mac/scheduler_test_rand.cc @@ -1,19 +1,14 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsenb/test/upper/CMakeLists.txt b/srsenb/test/upper/CMakeLists.txt index cd3318703..7d54a52b4 100644 --- a/srsenb/test/upper/CMakeLists.txt +++ b/srsenb/test/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # diff --git a/srsenb/test/upper/plmn_test.cc b/srsenb/test/upper/plmn_test.cc index f46e629b3..2cc013051 100644 --- a/srsenb/test/upper/plmn_test.cc +++ b/srsenb/test/upper/plmn_test.cc @@ -1,9 +1,21 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2016 Software Radio Systems Limited + * srsLTE is free software: you can redistribute it and/or modify + * 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, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/. * */ diff --git a/srsepc/CMakeLists.txt b/srsepc/CMakeLists.txt index 0405fd958..e8ac1f684 100644 --- a/srsepc/CMakeLists.txt +++ b/srsepc/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/hdr/hss/hss.h b/srsepc/hdr/hss/hss.h index 88227af87..b64f93916 100644 --- a/srsepc/hdr/hss/hss.h +++ b/srsepc/hdr/hss/hss.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mbms-gw/mbms-gw.h b/srsepc/hdr/mbms-gw/mbms-gw.h index f0db07da6..320d334ae 100644 --- a/srsepc/hdr/mbms-gw/mbms-gw.h +++ b/srsepc/hdr/mbms-gw/mbms-gw.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/mme.h b/srsepc/hdr/mme/mme.h index a342ba178..c3f9ac0c2 100644 --- a/srsepc/hdr/mme/mme.h +++ b/srsepc/hdr/mme/mme.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/mme_gtpc.h b/srsepc/hdr/mme/mme_gtpc.h index f58a1b7ba..0e8b4d8cd 100644 --- a/srsepc/hdr/mme/mme_gtpc.h +++ b/srsepc/hdr/mme/mme_gtpc.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/nas.h b/srsepc/hdr/mme/nas.h index 1aa0711ef..28f080c2c 100644 --- a/srsepc/hdr/mme/nas.h +++ b/srsepc/hdr/mme/nas.h @@ -1,5 +1,5 @@ /* - * \section LICENSE + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap.h b/srsepc/hdr/mme/s1ap.h index 652ca20b7..c84506d53 100644 --- a/srsepc/hdr/mme/s1ap.h +++ b/srsepc/hdr/mme/s1ap.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap_common.h b/srsepc/hdr/mme/s1ap_common.h index 88ed44211..c2112e808 100644 --- a/srsepc/hdr/mme/s1ap_common.h +++ b/srsepc/hdr/mme/s1ap_common.h @@ -1,5 +1,5 @@ /* - * \section LICENSE + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap_ctx_mngmt_proc.h b/srsepc/hdr/mme/s1ap_ctx_mngmt_proc.h index 380003fc5..495f95843 100644 --- a/srsepc/hdr/mme/s1ap_ctx_mngmt_proc.h +++ b/srsepc/hdr/mme/s1ap_ctx_mngmt_proc.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap_mngmt_proc.h b/srsepc/hdr/mme/s1ap_mngmt_proc.h index 859a647e4..da4d21a17 100644 --- a/srsepc/hdr/mme/s1ap_mngmt_proc.h +++ b/srsepc/hdr/mme/s1ap_mngmt_proc.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap_nas_transport.h b/srsepc/hdr/mme/s1ap_nas_transport.h index 3b889abec..0fb167f11 100644 --- a/srsepc/hdr/mme/s1ap_nas_transport.h +++ b/srsepc/hdr/mme/s1ap_nas_transport.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/mme/s1ap_paging.h b/srsepc/hdr/mme/s1ap_paging.h index d46902982..3eab08e90 100644 --- a/srsepc/hdr/mme/s1ap_paging.h +++ b/srsepc/hdr/mme/s1ap_paging.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/spgw/gtpc.h b/srsepc/hdr/spgw/gtpc.h index f7be9f873..6cc7f7273 100644 --- a/srsepc/hdr/spgw/gtpc.h +++ b/srsepc/hdr/spgw/gtpc.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/spgw/gtpu.h b/srsepc/hdr/spgw/gtpu.h index 7a29fbf19..6d8250805 100644 --- a/srsepc/hdr/spgw/gtpu.h +++ b/srsepc/hdr/spgw/gtpu.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/hdr/spgw/spgw.h b/srsepc/hdr/spgw/spgw.h index b69911460..27bf2a741 100644 --- a/srsepc/hdr/spgw/spgw.h +++ b/srsepc/hdr/spgw/spgw.h @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/CMakeLists.txt b/srsepc/src/CMakeLists.txt index f411eace5..44d3424db 100644 --- a/srsepc/src/CMakeLists.txt +++ b/srsepc/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/src/hss/CMakeLists.txt b/srsepc/src/hss/CMakeLists.txt index 276612c64..ea077a22f 100644 --- a/srsepc/src/hss/CMakeLists.txt +++ b/srsepc/src/hss/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/src/hss/hss.cc b/srsepc/src/hss/hss.cc index aaf591fa5..fb7d79fd2 100644 --- a/srsepc/src/hss/hss.cc +++ b/srsepc/src/hss/hss.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/main.cc b/srsepc/src/main.cc index b1b08fe42..18a4c5d2d 100644 --- a/srsepc/src/main.cc +++ b/srsepc/src/main.cc @@ -1,8 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mbms-gw/CMakeLists.txt b/srsepc/src/mbms-gw/CMakeLists.txt index 412753b57..dd33a7562 100644 --- a/srsepc/src/mbms-gw/CMakeLists.txt +++ b/srsepc/src/mbms-gw/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/src/mbms-gw/main.cc b/srsepc/src/mbms-gw/main.cc index 4b51ba9de..3f2312b18 100644 --- a/srsepc/src/mbms-gw/main.cc +++ b/srsepc/src/mbms-gw/main.cc @@ -1,8 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mbms-gw/mbms-gw.cc b/srsepc/src/mbms-gw/mbms-gw.cc index bb7f18957..f19296cac 100644 --- a/srsepc/src/mbms-gw/mbms-gw.cc +++ b/srsepc/src/mbms-gw/mbms-gw.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/CMakeLists.txt b/srsepc/src/mme/CMakeLists.txt index cd1958566..97d90cbc7 100644 --- a/srsepc/src/mme/CMakeLists.txt +++ b/srsepc/src/mme/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/src/mme/mme.cc b/srsepc/src/mme/mme.cc index a635f7333..bbdf1e1a5 100644 --- a/srsepc/src/mme/mme.cc +++ b/srsepc/src/mme/mme.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/mme_gtpc.cc b/srsepc/src/mme/mme_gtpc.cc index 37433232b..ca3b2e4ce 100644 --- a/srsepc/src/mme/mme_gtpc.cc +++ b/srsepc/src/mme/mme_gtpc.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/nas.cc b/srsepc/src/mme/nas.cc index d5536cb41..73c01ae60 100644 --- a/srsepc/src/mme/nas.cc +++ b/srsepc/src/mme/nas.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/s1ap.cc b/srsepc/src/mme/s1ap.cc index a7eb5018c..29b0d3486 100644 --- a/srsepc/src/mme/s1ap.cc +++ b/srsepc/src/mme/s1ap.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/s1ap_ctx_mngmt_proc.cc b/srsepc/src/mme/s1ap_ctx_mngmt_proc.cc index 9b98a596d..715a8e585 100644 --- a/srsepc/src/mme/s1ap_ctx_mngmt_proc.cc +++ b/srsepc/src/mme/s1ap_ctx_mngmt_proc.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/s1ap_mngmt_proc.cc b/srsepc/src/mme/s1ap_mngmt_proc.cc index 49c4f182d..de986e911 100644 --- a/srsepc/src/mme/s1ap_mngmt_proc.cc +++ b/srsepc/src/mme/s1ap_mngmt_proc.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/s1ap_nas_transport.cc b/srsepc/src/mme/s1ap_nas_transport.cc index b4d1d1f6a..61e8a0778 100644 --- a/srsepc/src/mme/s1ap_nas_transport.cc +++ b/srsepc/src/mme/s1ap_nas_transport.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/mme/s1ap_paging.cc b/srsepc/src/mme/s1ap_paging.cc index a26dc0be6..710f6eef9 100644 --- a/srsepc/src/mme/s1ap_paging.cc +++ b/srsepc/src/mme/s1ap_paging.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/spgw/CMakeLists.txt b/srsepc/src/spgw/CMakeLists.txt index ba50e480c..b3ebda999 100644 --- a/srsepc/src/spgw/CMakeLists.txt +++ b/srsepc/src/spgw/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsepc/src/spgw/gtpc.cc b/srsepc/src/spgw/gtpc.cc index 2599b53f1..89345960e 100644 --- a/srsepc/src/spgw/gtpc.cc +++ b/srsepc/src/spgw/gtpc.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/spgw/gtpu.cc b/srsepc/src/spgw/gtpu.cc index 9a3b307b8..6662ac3e5 100644 --- a/srsepc/src/spgw/gtpu.cc +++ b/srsepc/src/spgw/gtpu.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsepc/src/spgw/spgw.cc b/srsepc/src/spgw/spgw.cc index d558f1788..e9a11bbc1 100644 --- a/srsepc/src/spgw/spgw.cc +++ b/srsepc/src/spgw/spgw.cc @@ -1,10 +1,5 @@ -/** - * - * \section COPYRIGHT - * - * Copyright 2013-2017 Software Radio Systems Limited - * - * \section LICENSE +/* + * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * diff --git a/srsue/CMakeLists.txt b/srsue/CMakeLists.txt index 2f9106827..491d72ee4 100644 --- a/srsue/CMakeLists.txt +++ b/srsue/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/hdr/mac/demux.h b/srsue/hdr/mac/demux.h index d4be0ba9c..2a8a574b0 100644 --- a/srsue/hdr/mac/demux.h +++ b/srsue/hdr/mac/demux.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/dl_harq.h b/srsue/hdr/mac/dl_harq.h index 1f1aeda85..50143e35b 100644 --- a/srsue/hdr/mac/dl_harq.h +++ b/srsue/hdr/mac/dl_harq.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/dl_sps.h b/srsue/hdr/mac/dl_sps.h index 55ba15c08..8d64f9a26 100644 --- a/srsue/hdr/mac/dl_sps.h +++ b/srsue/hdr/mac/dl_sps.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/mac.h b/srsue/hdr/mac/mac.h index 3060f992b..a5e164b8d 100644 --- a/srsue/hdr/mac/mac.h +++ b/srsue/hdr/mac/mac.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/mac_metrics.h b/srsue/hdr/mac/mac_metrics.h index 56d20dcdc..f77d7d34f 100644 --- a/srsue/hdr/mac/mac_metrics.h +++ b/srsue/hdr/mac/mac_metrics.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/mux.h b/srsue/hdr/mac/mux.h index 3ea9278a1..d7c43d70b 100644 --- a/srsue/hdr/mac/mux.h +++ b/srsue/hdr/mac/mux.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/proc.h b/srsue/hdr/mac/proc.h index f3601385d..cf105463a 100644 --- a/srsue/hdr/mac/proc.h +++ b/srsue/hdr/mac/proc.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/proc_bsr.h b/srsue/hdr/mac/proc_bsr.h index 43bfc7128..9e4281717 100644 --- a/srsue/hdr/mac/proc_bsr.h +++ b/srsue/hdr/mac/proc_bsr.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/proc_phr.h b/srsue/hdr/mac/proc_phr.h index 3a67307e8..ce08a269f 100644 --- a/srsue/hdr/mac/proc_phr.h +++ b/srsue/hdr/mac/proc_phr.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/proc_ra.h b/srsue/hdr/mac/proc_ra.h index 63715198a..24016df4d 100644 --- a/srsue/hdr/mac/proc_ra.h +++ b/srsue/hdr/mac/proc_ra.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/proc_sr.h b/srsue/hdr/mac/proc_sr.h index b3b9f94f7..58da47cad 100644 --- a/srsue/hdr/mac/proc_sr.h +++ b/srsue/hdr/mac/proc_sr.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/ul_harq.h b/srsue/hdr/mac/ul_harq.h index 69e5021e6..55b4b43f4 100644 --- a/srsue/hdr/mac/ul_harq.h +++ b/srsue/hdr/mac/ul_harq.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/mac/ul_sps.h b/srsue/hdr/mac/ul_sps.h index 60f02ff51..1975f1b38 100644 --- a/srsue/hdr/mac/ul_sps.h +++ b/srsue/hdr/mac/ul_sps.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/metrics_csv.h b/srsue/hdr/metrics_csv.h index cd9458041..7359436d9 100644 --- a/srsue/hdr/metrics_csv.h +++ b/srsue/hdr/metrics_csv.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/metrics_stdout.h b/srsue/hdr/metrics_stdout.h index a7bf2ddb8..c999ad965 100644 --- a/srsue/hdr/metrics_stdout.h +++ b/srsue/hdr/metrics_stdout.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/phy/phy.h b/srsue/hdr/phy/phy.h index 4e859b860..4bad1e9d2 100644 --- a/srsue/hdr/phy/phy.h +++ b/srsue/hdr/phy/phy.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/phy/phy_metrics.h b/srsue/hdr/phy/phy_metrics.h index 0ef09fe95..a936339fc 100644 --- a/srsue/hdr/phy/phy_metrics.h +++ b/srsue/hdr/phy/phy_metrics.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/phy/prach.h b/srsue/hdr/phy/prach.h index d024eb1e5..8607cd0ac 100644 --- a/srsue/hdr/phy/prach.h +++ b/srsue/hdr/phy/prach.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/ue.h b/srsue/hdr/ue.h index e0c44b35d..b765c3e05 100644 --- a/srsue/hdr/ue.h +++ b/srsue/hdr/ue.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/ue_base.h b/srsue/hdr/ue_base.h index ed848c413..275612daa 100644 --- a/srsue/hdr/ue_base.h +++ b/srsue/hdr/ue_base.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/ue_metrics_interface.h b/srsue/hdr/ue_metrics_interface.h index 02889aaae..81ea70e10 100644 --- a/srsue/hdr/ue_metrics_interface.h +++ b/srsue/hdr/ue_metrics_interface.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/gw.h b/srsue/hdr/upper/gw.h index 7550dd9ad..5c7a553a5 100644 --- a/srsue/hdr/upper/gw.h +++ b/srsue/hdr/upper/gw.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/gw_metrics.h b/srsue/hdr/upper/gw_metrics.h index cce3af7ad..7af50317b 100644 --- a/srsue/hdr/upper/gw_metrics.h +++ b/srsue/hdr/upper/gw_metrics.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/nas.h b/srsue/hdr/upper/nas.h index e4ced61c7..4dc920f82 100644 --- a/srsue/hdr/upper/nas.h +++ b/srsue/hdr/upper/nas.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/pcsc_usim.h b/srsue/hdr/upper/pcsc_usim.h index 743443065..69e633795 100644 --- a/srsue/hdr/upper/pcsc_usim.h +++ b/srsue/hdr/upper/pcsc_usim.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/rrc.h b/srsue/hdr/upper/rrc.h index e31777620..a9302f97e 100644 --- a/srsue/hdr/upper/rrc.h +++ b/srsue/hdr/upper/rrc.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/rrc_common.h b/srsue/hdr/upper/rrc_common.h index f79a98bed..b248ef553 100644 --- a/srsue/hdr/upper/rrc_common.h +++ b/srsue/hdr/upper/rrc_common.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/usim.h b/srsue/hdr/upper/usim.h index f9730f73f..046fb0bd7 100644 --- a/srsue/hdr/upper/usim.h +++ b/srsue/hdr/upper/usim.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/hdr/upper/usim_base.h b/srsue/hdr/upper/usim_base.h index ddb718d82..e660249f9 100644 --- a/srsue/hdr/upper/usim_base.h +++ b/srsue/hdr/upper/usim_base.h @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/CMakeLists.txt b/srsue/src/CMakeLists.txt index f6a561c14..2749e9768 100644 --- a/srsue/src/CMakeLists.txt +++ b/srsue/src/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/src/mac/CMakeLists.txt b/srsue/src/mac/CMakeLists.txt index fb5783b4d..db01c0cd9 100644 --- a/srsue/src/mac/CMakeLists.txt +++ b/srsue/src/mac/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/src/mac/demux.cc b/srsue/src/mac/demux.cc index 12bd90805..1987e43a6 100644 --- a/srsue/src/mac/demux.cc +++ b/srsue/src/mac/demux.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #define Error(fmt, ...) log_h->error(fmt, ##__VA_ARGS__) #define Warning(fmt, ...) log_h->warning(fmt, ##__VA_ARGS__) #define Info(fmt, ...) log_h->info(fmt, ##__VA_ARGS__) diff --git a/srsue/src/mac/mac.cc b/srsue/src/mac/mac.cc index dc56b26d7..489c15a9b 100644 --- a/srsue/src/mac/mac.cc +++ b/srsue/src/mac/mac.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/mac/mux.cc b/srsue/src/mac/mux.cc index ba5e3ffe2..3bdde7f51 100644 --- a/srsue/src/mac/mux.cc +++ b/srsue/src/mac/mux.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/mac/proc_bsr.cc b/srsue/src/mac/proc_bsr.cc index 357a30f07..e898cf1c8 100644 --- a/srsue/src/mac/proc_bsr.cc +++ b/srsue/src/mac/proc_bsr.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/mac/proc_phr.cc b/srsue/src/mac/proc_phr.cc index a25f682d3..3579989d0 100644 --- a/srsue/src/mac/proc_phr.cc +++ b/srsue/src/mac/proc_phr.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/mac/proc_ra.cc b/srsue/src/mac/proc_ra.cc index 4995a0ca2..ec21d3b00 100644 --- a/srsue/src/mac/proc_ra.cc +++ b/srsue/src/mac/proc_ra.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/mac/proc_sr.cc b/srsue/src/mac/proc_sr.cc index 3e8552ea6..ad7facba3 100644 --- a/srsue/src/mac/proc_sr.cc +++ b/srsue/src/mac/proc_sr.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/main.cc b/srsue/src/main.cc index 8a3329bf5..93a412ddd 100644 --- a/srsue/src/main.cc +++ b/srsue/src/main.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/metrics_csv.cc b/srsue/src/metrics_csv.cc index 3bfb44bc4..6ef4934ee 100644 --- a/srsue/src/metrics_csv.cc +++ b/srsue/src/metrics_csv.cc @@ -1,20 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2015 The srsUE Developers. See the - * COPYRIGHT file at the top-level directory of this distribution. - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/metrics_stdout.cc b/srsue/src/metrics_stdout.cc index 340df8c29..7f77c522d 100644 --- a/srsue/src/metrics_stdout.cc +++ b/srsue/src/metrics_stdout.cc @@ -1,20 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2015 The srsUE Developers. See the - * COPYRIGHT file at the top-level directory of this distribution. - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/phy/CMakeLists.txt b/srsue/src/phy/CMakeLists.txt index d3e4dee7d..aa577a8b4 100644 --- a/srsue/src/phy/CMakeLists.txt +++ b/srsue/src/phy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/src/phy/phy.cc b/srsue/src/phy/phy.cc index 2e0e3dc68..db7ce72fb 100644 --- a/srsue/src/phy/phy.cc +++ b/srsue/src/phy/phy.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/phy/prach.cc b/srsue/src/phy/prach.cc index 25be521db..d4a6e6f4b 100644 --- a/srsue/src/phy/prach.cc +++ b/srsue/src/phy/prach.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/set_net_admin_caps.cc b/srsue/src/set_net_admin_caps.cc index 1485a26d9..43db1a832 100644 --- a/srsue/src/set_net_admin_caps.cc +++ b/srsue/src/set_net_admin_caps.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/ue.cc b/srsue/src/ue.cc index f1bffd5f0..b60dd2143 100644 --- a/srsue/src/ue.cc +++ b/srsue/src/ue.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srsue/hdr/ue.h" #include "srslte/srslte.h" #include diff --git a/srsue/src/ue_base.cc b/srsue/src/ue_base.cc index f1e4a5edf..ff989238b 100644 --- a/srsue/src/ue_base.cc +++ b/srsue/src/ue_base.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/upper/CMakeLists.txt b/srsue/src/upper/CMakeLists.txt index 766893bbd..65975146c 100644 --- a/srsue/src/upper/CMakeLists.txt +++ b/srsue/src/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/src/upper/gw.cc b/srsue/src/upper/gw.cc index e13b33a49..cf4f3e571 100644 --- a/srsue/src/upper/gw.cc +++ b/srsue/src/upper/gw.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include "srsue/hdr/upper/gw.h" #include diff --git a/srsue/src/upper/nas.cc b/srsue/src/upper/nas.cc index 1b68bafc4..0127ab7b8 100644 --- a/srsue/src/upper/nas.cc +++ b/srsue/src/upper/nas.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/upper/pcsc_usim.cc b/srsue/src/upper/pcsc_usim.cc index e9258872a..1c02593ce 100644 --- a/srsue/src/upper/pcsc_usim.cc +++ b/srsue/src/upper/pcsc_usim.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include "srslte/common/bcd_helpers.h" diff --git a/srsue/src/upper/rrc.cc b/srsue/src/upper/rrc.cc index 0479df8a8..c8bbd9088 100644 --- a/srsue/src/upper/rrc.cc +++ b/srsue/src/upper/rrc.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/src/upper/usim.cc b/srsue/src/upper/usim.cc index ededff3dd..0d3610ab2 100644 --- a/srsue/src/upper/usim.cc +++ b/srsue/src/upper/usim.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. @@ -24,7 +19,6 @@ * */ - #include #include "srsue/hdr/upper/usim.h" #include "srslte/common/bcd_helpers.h" diff --git a/srsue/src/upper/usim_base.cc b/srsue/src/upper/usim_base.cc index 7797be405..4270f2c4b 100644 --- a/srsue/src/upper/usim_base.cc +++ b/srsue/src/upper/usim_base.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/test/CMakeLists.txt b/srsue/test/CMakeLists.txt index ca80ecb45..01136b8d5 100644 --- a/srsue/test/CMakeLists.txt +++ b/srsue/test/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/test/metrics_test.cc b/srsue/test/metrics_test.cc index 949fc4688..b8ab4f947 100644 --- a/srsue/test/metrics_test.cc +++ b/srsue/test/metrics_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/test/upper/CMakeLists.txt b/srsue/test/upper/CMakeLists.txt index f1e47a8e0..9c169622c 100644 --- a/srsue/test/upper/CMakeLists.txt +++ b/srsue/test/upper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright 2013-2017 Software Radio Systems Limited +# Copyright 2013-2019 Software Radio Systems Limited # # This file is part of srsLTE # @@ -10,7 +10,7 @@ # # srsLTE 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # A copy of the GNU Affero General Public License can be found in diff --git a/srsue/test/upper/nas_test.cc b/srsue/test/upper/nas_test.cc index d8f9d5b75..9a3148f52 100644 --- a/srsue/test/upper/nas_test.cc +++ b/srsue/test/upper/nas_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/test/upper/pcsc_usim_test.cc b/srsue/test/upper/pcsc_usim_test.cc index 825e6a497..819639efc 100644 --- a/srsue/test/upper/pcsc_usim_test.cc +++ b/srsue/test/upper/pcsc_usim_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/test/upper/rrc_reconfig_test.cc b/srsue/test/upper/rrc_reconfig_test.cc index a89a33030..2df22aec5 100644 --- a/srsue/test/upper/rrc_reconfig_test.cc +++ b/srsue/test/upper/rrc_reconfig_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. diff --git a/srsue/test/upper/usim_test.cc b/srsue/test/upper/usim_test.cc index 35688a23f..3c7e5d4d3 100644 --- a/srsue/test/upper/usim_test.cc +++ b/srsue/test/upper/usim_test.cc @@ -1,19 +1,14 @@ -/** +/* + * Copyright 2013-2019 Software Radio Systems Limited * - * \section COPYRIGHT + * This file is part of srsLTE. * - * Copyright 2013-2015 Software Radio Systems Limited - * - * \section LICENSE - * - * This file is part of the srsUE library. - * - * srsUE is free software: you can redistribute it and/or modify + * srsLTE is free software: you can redistribute it and/or modify * 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. * - * srsUE is distributed in the hope that it will be useful, + * srsLTE 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 Affero General Public License for more details. From 3842beab0fbd53badff86ccdb6910c4b3bf4edaf Mon Sep 17 00:00:00 2001 From: yagoda Date: Mon, 29 Apr 2019 10:29:09 +0200 Subject: [PATCH 3/5] - fixing pmch file test for standard LTE rates - adding special value for MTCH stop - adding error messages for config values incompatible with MBMS --- lib/include/srslte/common/pdu.h | 22 ++++++++++++---------- lib/src/common/pdu.cc | 15 +++++++++++---- lib/src/phy/phch/test/pmch_file_test.c | 8 ++++---- srsenb/src/mac/mac.cc | 10 ++++++---- srsue/src/main.cc | 20 ++++++++++++++++++++ 5 files changed, 53 insertions(+), 22 deletions(-) diff --git a/lib/include/srslte/common/pdu.h b/lib/include/srslte/common/pdu.h index 15cbce3c5..3bdb8fe4d 100644 --- a/lib/include/srslte/common/pdu.h +++ b/lib/include/srslte/common/pdu.h @@ -223,25 +223,27 @@ public: typedef enum { /* Values of LCID for DL-SCH */ SCELL_ACTIVATION = 0b11011, - CON_RES_ID = 0b11100, - TA_CMD = 0b11101, - DRX_CMD = 0b11110, + CON_RES_ID = 0b11100, + TA_CMD = 0b11101, + DRX_CMD = 0b11110, /* Values of LCID for UL-SCH */ PHR_REPORT_EXT = 0b11001, - PHR_REPORT = 0b11010, - CRNTI = 0b11011, - TRUNC_BSR = 0b11100, - SHORT_BSR = 0b11101, - LONG_BSR = 0b11110, + PHR_REPORT = 0b11010, + CRNTI = 0b11011, + TRUNC_BSR = 0b11100, + SHORT_BSR = 0b11101, + LONG_BSR = 0b11110, /* Values of LCID for MCH */ - MTCH_MAX_LCID = 0b11100, + MTCH_MAX_LCID = 0b11100, MCH_SCHED_INFO = 0b11110, + /*MTCH STOP Value*/ + MTCH_STOP_EMPTY = 0b11111111111, /* Common */ PADDING = 0b11111, - SDU = 0b00000 + SDU = 0b00000 } cetype; // Size of MAC CEs diff --git a/lib/src/common/pdu.cc b/lib/src/common/pdu.cc index e26465efc..b0fde7dc3 100644 --- a/lib/src/common/pdu.cc +++ b/lib/src/common/pdu.cc @@ -454,13 +454,17 @@ int sch_subh::get_bsr(uint32_t buff_size[4]) bool sch_subh::get_next_mch_sched_info(uint8_t *lcid_, uint16_t *mtch_stop) { + uint16_t mtch_stop_ce; if(payload) { nof_mch_sched_ce = nof_bytes/2; if (cur_mch_sched_ce < nof_mch_sched_ce) { *lcid_ = (payload[cur_mch_sched_ce * 2] & 0xF8) >> 3; - *mtch_stop = ((uint16_t)(payload[cur_mch_sched_ce * 2] & 0x07)) << 8; - *mtch_stop += payload[cur_mch_sched_ce * 2 + 1]; + mtch_stop_ce = ((uint16_t)(payload[cur_mch_sched_ce * 2] & 0x07)) << 8; + mtch_stop_ce += payload[cur_mch_sched_ce * 2 + 1]; cur_mch_sched_ce++; + *mtch_stop = (mtch_stop_ce == srslte::mch_subh::MTCH_STOP_EMPTY) + ? (0) + : (mtch_stop_ce); return true; } } @@ -613,8 +617,11 @@ bool sch_subh::set_ta_cmd(uint8_t ta_cmd) bool sch_subh::set_next_mch_sched_info(uint8_t lcid_, uint16_t mtch_stop) { if (((sch_pdu*)parent)->has_space_ce(2, true)) { - w_payload_ce[nof_mch_sched_ce*2] = (lcid_&0x1F) << 3 | (uint8_t) ((mtch_stop&0x0700)>>8); - w_payload_ce[nof_mch_sched_ce*2+1] = (uint8_t) (mtch_stop&0xff); + uint16_t mtch_stop_ce = + (mtch_stop) ? (mtch_stop) : (srslte::mch_subh::MTCH_STOP_EMPTY); + w_payload_ce[nof_mch_sched_ce * 2] = + (lcid_ & 0x1F) << 3 | (uint8_t)((mtch_stop_ce & 0x0700) >> 8); + w_payload_ce[nof_mch_sched_ce * 2 + 1] = (uint8_t)(mtch_stop_ce & 0xff); nof_mch_sched_ce++; lcid = MCH_SCHED_INFO; ((sch_pdu*)parent)->update_space_ce(2, true); diff --git a/lib/src/phy/phch/test/pmch_file_test.c b/lib/src/phy/phch/test/pmch_file_test.c index 051cdc50d..16d38f202 100644 --- a/lib/src/phy/phch/test/pmch_file_test.c +++ b/lib/src/phy/phch/test/pmch_file_test.c @@ -159,7 +159,7 @@ int main(int argc, char **argv) { exit(-1); } parse_args(argc,argv); - + srslte_use_standard_symbol_size(false); if (base_init()) { ERROR("Error initializing memory\n"); exit(-1); @@ -215,9 +215,9 @@ int main(int argc, char **argv) { srslte_pdsch_res_t pdsch_res; pdsch_res.payload = data; ret = srslte_ue_dl_decode_pmch(&ue_dl, &dl_sf, &pmch_cfg, &pdsch_res); - if (ret >= 0) { - printf("PMCH Decoded OK!\n"); - } else if (ret < 0) { + if (pdsch_res.crc == 1) { + printf("PMCH Decoded OK!\n"); + } else if (pdsch_res.crc == 0) { printf("Error decoding PMCH\n"); } diff --git a/srsenb/src/mac/mac.cc b/srsenb/src/mac/mac.cc index 45f650cda..a9d410830 100644 --- a/srsenb/src/mac/mac.cc +++ b/srsenb/src/mac/mac.cc @@ -663,14 +663,14 @@ void mac::build_mch_sched(uint32_t tbs) int last_mtch_stop = 0; - if(total_bytes_to_tx >= total_space_avail_bytes){ + if (total_bytes_to_tx >= total_space_avail_bytes) { for(uint32_t i = 0; i < mch.num_mtch_sched;i++){ double ratio = mch.mtch_sched[i].lcid_buffer_size/total_bytes_to_tx; float assigned_sfs = floor(sfs_per_sched_period*ratio); mch.mtch_sched[i].stop = last_mtch_stop + (uint32_t)assigned_sfs; last_mtch_stop = mch.mtch_sched[i].stop; } - }else { + } else { for(uint32_t i = 0; i < mch.num_mtch_sched;i++){ float assigned_sfs = ceil(((float)mch.mtch_sched[i].lcid_buffer_size)/((float)bytes_per_sf)); mch.mtch_sched[i].stop = last_mtch_stop + (uint32_t)assigned_sfs; @@ -694,8 +694,10 @@ int mac::get_mch_sched(uint32_t tti, bool is_mcch, dl_sched_t* dl_sched_res) build_mch_sched(mcs_data.tbs); mch.mcch_payload = mcch_payload_buffer; mch.current_sf_allocation_num = 1; - Info("MCH Sched Info: LCID: %d, Stop: %d, tti is %d \n", mch.mtch_sched[0].lcid, mch.mtch_sched[0].stop, tti); - phy_h->set_mch_period_stop(mch.mtch_sched[0].stop); + Info("MCH Sched Info: LCID: %d, Stop: %d, tti is %d \n", + mch.mtch_sched[0].lcid, mch.mtch_sched[mch.num_mtch_sched - 1].stop, + tti); + phy_h->set_mch_period_stop(mch.mtch_sched[mch.num_mtch_sched - 1].stop); for(uint32_t i = 0; i < mch.num_mtch_sched; i++) { mch.pdu[i].lcid = srslte::sch_subh::MCH_SCHED_INFO; // mch.mtch_sched[i].lcid = 1+i; diff --git a/srsue/src/main.cc b/srsue/src/main.cc index 93a412ddd..4a4f7880e 100644 --- a/srsue/src/main.cc +++ b/srsue/src/main.cc @@ -536,6 +536,26 @@ int main(int argc, char* argv[]) exit(1); } + if (args.expert.mbms_service > -1) { + if (!args.expert.phy.interpolate_subframe_enabled) { + fprintf(stderr, "interpolate_subframe_enabled = %d, While using MBMS, " + "please set interpolate_subframe_enabled to true\n", + args.expert.phy.interpolate_subframe_enabled); + exit(1); + } + if (args.expert.phy.nof_phy_threads > 2) { + fprintf(stderr, "nof_phy_threads = %d, While using MBMS, please set " + "number of phy threads to 1 or 2\n", + args.expert.phy.nof_phy_threads); + exit(1); + } + if ((0 == args.expert.phy.snr_estim_alg.find("refs"))) { + fprintf(stderr, "snr_estim_alg = refs, While using MBMS, please set " + "algorithm to pss or empty \n"); + exit(1); + } + } + metricshub.init(ue, args.expert.metrics_period_secs); metricshub.add_listener(&metrics_screen); metrics_screen.set_ue_handle(ue); From 507e2deaa3b3cb1419a196d6366041ecc535aa1d Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 29 Apr 2019 11:48:01 +0200 Subject: [PATCH 4/5] fix mem leaks in RRC after ASN1 unpacking failed --- srsue/src/upper/rrc.cc | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/srsue/src/upper/rrc.cc b/srsue/src/upper/rrc.cc index c8bbd9088..192402f49 100644 --- a/srsue/src/upper/rrc.cc +++ b/srsue/src/upper/rrc.cc @@ -1956,20 +1956,25 @@ void rrc::handle_sib13() * * *******************************************************************************/ -void rrc::write_pdu_pcch(byte_buffer_t *pdu) { +void rrc::write_pdu_pcch(byte_buffer_t* pdu) +{ cmd_msg_t msg; msg.pdu = pdu; msg.command = cmd_msg_t::PCCH; cmd_q.push(msg); } -void rrc::process_pcch(byte_buffer_t *pdu) { +void rrc::process_pcch(byte_buffer_t* pdu) +{ if (pdu->N_bytes > 0 && pdu->N_bytes < SRSLTE_MAX_BUFFER_SIZE_BITS) { pcch_msg_s pcch_msg; asn1::bit_ref bref(pdu->msg, pdu->N_bytes); - pcch_msg.unpack(bref); + if (pcch_msg.unpack(bref) != asn1::SRSASN_SUCCESS) { + rrc_log->error("Failed to unpack PCCH message\n"); + goto exit; + } + log_rrc_message("PCCH", Rx, pdu, pcch_msg); - pool->deallocate(pdu); paging_s* paging = &pcch_msg.msg.c1().paging(); if (paging->paging_record_list.size() > ASN1_RRC_MAX_PAGE_REC) { @@ -1978,7 +1983,7 @@ void rrc::process_pcch(byte_buffer_t *pdu) { if (not ue_identity_configured) { rrc_log->warning("Received paging message but no ue-Identity is configured\n"); - return; + goto exit; } s_tmsi_s* s_tmsi_paged; @@ -2010,7 +2015,11 @@ void rrc::process_pcch(byte_buffer_t *pdu) { rrc_log->error("While obtaining SIBs of serving cell.\n"); } } + } else { + rrc_log->error_hex(pdu->buffer, pdu->N_bytes, "Dropping PCCH message with %d B\n", pdu->N_bytes); } +exit: + pool->deallocate(pdu); } void rrc::write_pdu_mch(uint32_t lcid, srslte::byte_buffer_t *pdu) @@ -2019,14 +2028,17 @@ void rrc::write_pdu_mch(uint32_t lcid, srslte::byte_buffer_t *pdu) //TODO: handle MCCH notifications and update MCCH if(0 == lcid && !serving_cell->has_mcch) { asn1::bit_ref bref(pdu->msg, pdu->N_bytes); - serving_cell->mcch.unpack(bref); + if (serving_cell->mcch.unpack(bref) != asn1::SRSASN_SUCCESS) { + rrc_log->error("Failed to unpack MCCH message\n"); + goto exit; + } serving_cell->has_mcch = true; phy->set_config_mbsfn_mcch(&serving_cell->mcch); log_rrc_message("MCH", Rx, pdu, serving_cell->mcch); } - - pool->deallocate(pdu); } +exit: + pool->deallocate(pdu); } @@ -2112,6 +2124,7 @@ void rrc::write_pdu(uint32_t lcid, byte_buffer_t* pdu) asn1::rrc::dl_ccch_msg_s dl_ccch_msg; if (dl_ccch_msg.unpack(bref) != asn1::SRSASN_SUCCESS) { rrc_log->error("Failed to unpack DL-CCCH message\n"); + pool->deallocate(pdu); return; } if (dl_ccch_msg.msg.c1().type() == dl_ccch_msg_type_c::c1_c_::types::rrc_conn_setup) { @@ -2206,6 +2219,7 @@ void rrc::parse_dl_dcch(uint32_t lcid, byte_buffer_t* pdu) asn1::rrc::dl_dcch_msg_s dl_dcch_msg; if (dl_dcch_msg.unpack(bref) != asn1::SRSASN_SUCCESS) { rrc_log->error("Failed to unpack DL-DCCH message\n"); + pool->deallocate(pdu); return; } log_rrc_message(get_rb_name(lcid).c_str(), Rx, pdu, dl_dcch_msg); From e4ea96aa7952c09a4ff79a76fdffa7a40f90e6c4 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 29 Apr 2019 11:58:42 +0200 Subject: [PATCH 5/5] add check for return value for RRC unpacking - handle error cases accordingly --- srsenb/hdr/upper/rrc.h | 2 +- srsenb/src/upper/rrc.cc | 32 ++++++++++++++++++++++++-------- 2 files changed, 25 insertions(+), 9 deletions(-) diff --git a/srsenb/hdr/upper/rrc.h b/srsenb/hdr/upper/rrc.h index e06a02609..391b513ed 100644 --- a/srsenb/hdr/upper/rrc.h +++ b/srsenb/hdr/upper/rrc.h @@ -220,7 +220,7 @@ public: void handle_rrc_reconf_complete(asn1::rrc::rrc_conn_recfg_complete_s* msg, srslte::byte_buffer_t* pdu); void handle_security_mode_complete(asn1::rrc::security_mode_complete_s* msg); void handle_security_mode_failure(asn1::rrc::security_mode_fail_s* msg); - void handle_ue_cap_info(asn1::rrc::ue_cap_info_s* msg); + bool handle_ue_cap_info(asn1::rrc::ue_cap_info_s* msg); void set_bitrates(LIBLTE_S1AP_UEAGGREGATEMAXIMUMBITRATE_STRUCT *rates); void set_security_capabilities(LIBLTE_S1AP_UESECURITYCAPABILITIES_STRUCT *caps); diff --git a/srsenb/src/upper/rrc.cc b/srsenb/src/upper/rrc.cc index ae79fdb07..5e38d71d1 100644 --- a/srsenb/src/upper/rrc.cc +++ b/srsenb/src/upper/rrc.cc @@ -526,8 +526,10 @@ void rrc::parse_ul_ccch(uint16_t rnti, byte_buffer_t *pdu) if (pdu) { ul_ccch_msg_s ul_ccch_msg; asn1::bit_ref bref(pdu->msg, pdu->N_bytes); - - ul_ccch_msg.unpack(bref); + if (ul_ccch_msg.unpack(bref) != asn1::SRSASN_SUCCESS) { + rrc_log->error("Failed to unpack UL-CCCH message\n"); + goto exit; + } log_rrc_message("SRB0", Rx, pdu, ul_ccch_msg); @@ -580,6 +582,7 @@ void rrc::parse_ul_ccch(uint16_t rnti, byte_buffer_t *pdu) break; } + exit: pool->deallocate(pdu); } } @@ -1044,7 +1047,11 @@ void rrc::ue::parse_ul_dcch(uint32_t lcid, byte_buffer_t *pdu) ul_dcch_msg_s ul_dcch_msg; asn1::bit_ref bref(pdu->msg, pdu->N_bytes); - ul_dcch_msg.unpack(bref); + if (ul_dcch_msg.unpack(bref) != asn1::SRSASN_SUCCESS) { + parent->rrc_log->error("Failed to unpack UL-DCCH message\n"); + pool->deallocate(pdu); + return; + } parent->log_rrc_message(rb_id_text[lcid], Rx, pdu, ul_dcch_msg); @@ -1090,9 +1097,13 @@ void rrc::ue::parse_ul_dcch(uint32_t lcid, byte_buffer_t *pdu) handle_security_mode_failure(&ul_dcch_msg.msg.c1().security_mode_fail()); break; case ul_dcch_msg_type_c::c1_c_::types::ue_cap_info: - handle_ue_cap_info(&ul_dcch_msg.msg.c1().ue_cap_info()); - send_connection_reconf(pdu); - state = RRC_STATE_WAIT_FOR_CON_RECONF_COMPLETE; + if (handle_ue_cap_info(&ul_dcch_msg.msg.c1().ue_cap_info())) { + send_connection_reconf(pdu); + state = RRC_STATE_WAIT_FOR_CON_RECONF_COMPLETE; + } else { + send_connection_reject(); + state = RRC_STATE_IDLE; + } break; default: parent->rrc_log->error("Msg: %s not supported\n", ul_dcch_msg.msg.c1().type().to_string().c_str()); @@ -1169,7 +1180,7 @@ void rrc::ue::handle_security_mode_failure(security_mode_fail_s* msg) parent->rrc_log->info("SecurityModeFailure transaction ID: %d\n", msg->rrc_transaction_id); } -void rrc::ue::handle_ue_cap_info(ue_cap_info_s* msg) +bool rrc::ue::handle_ue_cap_info(ue_cap_info_s* msg) { parent->rrc_log->info("UECapabilityInformation transaction ID: %d\n", msg->rrc_transaction_id); ue_cap_info_r8_ies_s* msg_r8 = &msg->crit_exts.c1().ue_cap_info_r8(); @@ -1181,11 +1192,16 @@ void rrc::ue::handle_ue_cap_info(ue_cap_info_s* msg) } else { asn1::bit_ref bref(msg_r8->ue_cap_rat_container_list[0].ue_cap_rat_container.data(), msg_r8->ue_cap_rat_container_list[0].ue_cap_rat_container.size()); - eutra_capabilities.unpack(bref); + if (eutra_capabilities.unpack(bref) != asn1::SRSASN_SUCCESS) { + parent->rrc_log->error("Failed to unpack EUTRA capabilities message\n"); + return false; + } parent->rrc_log->info("UE rnti: 0x%x category: %d\n", rnti, eutra_capabilities.ue_category); } } + return true; + // TODO: Add liblte_rrc support for unpacking UE cap info and repacking into // inter-node UERadioAccessCapabilityInformation (36.331 v10.0.0 Section 10.2.2). // This is then passed to S1AP for transfer to EPC.