From fd69fb2e64046d5362232085687420ec06cd4212 Mon Sep 17 00:00:00 2001 From: Michael Iedema Date: Wed, 10 Feb 2021 17:00:50 +0100 Subject: [PATCH 1/2] update copyright year --- Globals/Globals.cpp | 4 ++-- Globals/Globals.h | 2 +- apps/GetConfigurationKeys.cpp | 2 +- apps/OpenBTS-UMTS.cpp | 2 +- apps/OpenBTS-UMTSCLI.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Globals/Globals.cpp b/Globals/Globals.cpp index bf89bef..a3823d2 100644 --- a/Globals/Globals.cpp +++ b/Globals/Globals.cpp @@ -6,7 +6,7 @@ * * Copyright 2008, 2009, 2010 Free Software Foundation, Inc. * Copyright 2010 Kestrel Signal Processing, Inc. - * Copyright 2011, 2014 Range Networks, Inc. + * Copyright 2011-2021 Range Networks, Inc. * * This software is distributed under the terms of the GNU Affero General * Public License version 3. See the COPYING and NOTICE files in the main @@ -32,7 +32,7 @@ const char *gOpenWelcome = "OpenBTS, OpenBTS-UMTS\n" "Copyright 2008, 2009, 2010 Free Software Foundation, Inc.\n" "Copyright 2010 Kestrel Signal Processing, Inc.\n" - "Copyright 2011, 2012, 2013, 2014 Range Networks, Inc.\n" + "Copyright 2011-2021 Range Networks, Inc.\n" "Release " VERSION " " PROD_CAT " formal build date " TIMESTAMP_ISO " " REPO_REV "\n" "\"OpenBTS\" is a trademark of Range Networks, Inc.\n" "\"OpenBTS-UMTS\" is a trademark of Range Networks, Inc.\n" diff --git a/Globals/Globals.h b/Globals/Globals.h index d0039bf..30d00aa 100644 --- a/Globals/Globals.h +++ b/Globals/Globals.h @@ -5,7 +5,7 @@ * traditionally complex, proprietary hardware systems. * * Copyright 2008, 2009 Free Software Foundation, Inc. - * Copyright 2011, 2014 Range Networks, Inc. + * Copyright 2011-2021 Range Networks, Inc. * * This software is distributed under the terms of the GNU Affero General * Public License version 3. See the COPYING and NOTICE files in the main diff --git a/apps/GetConfigurationKeys.cpp b/apps/GetConfigurationKeys.cpp index 72aba61..1154c27 100644 --- a/apps/GetConfigurationKeys.cpp +++ b/apps/GetConfigurationKeys.cpp @@ -4,7 +4,7 @@ * * Copyright 2008, 2009, 2010 Free Software Foundation, Inc. * Copyright 2010 Kestrel Signal Processing, Inc. - * Copyright 2011, 2012, 2013, 2014 Range Networks, Inc. + * Copyright 2011-2021 Range Networks, Inc. * * This software is distributed under the terms of the GNU Affero General * See the COPYING and NOTICE files in the current or main directory for diff --git a/apps/OpenBTS-UMTS.cpp b/apps/OpenBTS-UMTS.cpp index 480ae35..b42f7a4 100644 --- a/apps/OpenBTS-UMTS.cpp +++ b/apps/OpenBTS-UMTS.cpp @@ -4,7 +4,7 @@ * * Copyright 2008, 2009, 2010 Free Software Foundation, Inc. * Copyright 2010 Kestrel Signal Processing, Inc. - * Copyright 2011, 2014 Range Networks, Inc. + * Copyright 2011-2021 Range Networks, Inc. * * This software is distributed under the terms of the GNU Affero General * See the COPYING and NOTICE files in the current or main directory for diff --git a/apps/OpenBTS-UMTSCLI.cpp b/apps/OpenBTS-UMTSCLI.cpp index 9b76466..5668259 100644 --- a/apps/OpenBTS-UMTSCLI.cpp +++ b/apps/OpenBTS-UMTSCLI.cpp @@ -2,7 +2,7 @@ * OpenBTS provides an open source alternative to legacy telco protocols and * traditionally complex, proprietary hardware systems. * - * Copyright 2011, 2012, 2013, 2014 Range Networks, Inc. + * Copyright 2011-2021 Range Networks, Inc. * * This software is distributed under the terms of the GNU Affero General * See the COPYING and NOTICE files in the current or main directory for From 852a481e03ba0bc016e2d7e7dcaa18bc0d5a0e23 Mon Sep 17 00:00:00 2001 From: trxstudio Date: Fri, 27 May 2022 16:08:04 +0100 Subject: [PATCH 2/2] Update UHDDevice.cpp Modified UHDDevice::parse_dev_type() to include USRP B205 Mini --- TransceiverUHD/UHDDevice.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TransceiverUHD/UHDDevice.cpp b/TransceiverUHD/UHDDevice.cpp index 454d036..db6fddd 100644 --- a/TransceiverUHD/UHDDevice.cpp +++ b/TransceiverUHD/UHDDevice.cpp @@ -19,6 +19,10 @@ * along with this program. If not, see . * See the COPYING file in the main directory for details. */ +/* + * Modified UHDDevice::parse_dev_type() to include USRP B205 Mini +*/ + #include #include @@ -266,7 +270,7 @@ bool UHDDevice::parse_dev_type() mboard_str = usrp_dev->get_mboard_name(); usrp2_str = dev_str.find("USRP2"); - b200_str = mboard_str.find("B200"); + b200_str = mboard_str.find("B205mini"); b210_str = mboard_str.find("B210"); x300_str = mboard_str.find("X300"); x310_str = mboard_str.find("X310");