Changes of Revision 162
osmo-trx.spec
Changed
x
1
2
# published by the Open Source Initiative.
3
4
Name: osmo-trx
5
-Requires: osmocom-nightly = 202212010004
6
-Version: 1.4.1.7.f2f3.202212010004
7
+Requires: osmocom-nightly = 202212020004
8
+Version: 1.4.1.10.0404.202212020004
9
Release: 0
10
Summary: SDR transceiver that implements Layer 1 of a GSM BTS
11
License: AGPL-3.0-or-later
12
Group: Productivity/Telephony/Servers
13
URL: https://osmocom.org/projects/osmotrx
14
-Source: osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz
15
+Source: osmo-trx_1.4.1.10.0404.202212020004.tar.xz
16
Source1: rpmlintrc
17
BuildRequires: autoconf
18
BuildRequires: automake
19
20
generations of mobile phone networks. (post-2G/GSM)
21
22
%package uhd
23
-Requires: osmocom-nightly = 202212010004
24
+Requires: osmocom-nightly = 202212020004
25
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (UHD)
26
Group: Productivity/Telephony/Servers
27
Requires: uhd-firmware
28
29
30
%if ! 0%{?centos_ver}
31
%package usrp1
32
-Requires: osmocom-nightly = 202212010004
33
+Requires: osmocom-nightly = 202212020004
34
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (USRP1)
35
Group: Productivity/Telephony/Servers
36
37
38
generations of mobile phone networks. (post-2G/GSM)
39
40
%package lms
41
-Requires: osmocom-nightly = 202212010004
42
+Requires: osmocom-nightly = 202212020004
43
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (LimeSuite)
44
Group: Productivity/Telephony/Servers
45
46
47
%endif
48
49
%package ipc
50
-Requires: osmocom-nightly = 202212010004
51
+Requires: osmocom-nightly = 202212020004
52
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (IPC)
53
Group: Productivity/Telephony/Servers
54
55
56
generations of mobile phone networks. (post-2G/GSM)
57
58
%package ipc-test
59
-Requires: osmocom-nightly = 202212010004
60
+Requires: osmocom-nightly = 202212020004
61
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (IPC) driver test utility
62
Group: Productivity/Telephony/Servers
63
64
osmo-trx_1.4.1.7.f2f3.202212010004.dsc -> osmo-trx_1.4.1.10.0404.202212020004.dsc
Changed
22
1
2
Source: osmo-trx
3
Binary: osmo-trx, osmo-trx-dbg, osmo-trx-uhd, osmo-trx-usrp1, osmo-trx-lms, osmo-trx-ipc, osmo-trx-doc
4
Architecture: any all
5
-Version: 1.4.1.7.f2f3.202212010004
6
+Version: 1.4.1.10.0404.202212020004
7
Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
Homepage: https://projects.osmocom.org/projects/osmotrx
9
Standards-Version: 3.9.6
10
11
osmo-trx-uhd deb net optional arch=any
12
osmo-trx-usrp1 deb net optional arch=any
13
Checksums-Sha1:
14
- 97ebc3d724a89f3b767425453dd129c4de656623 336312 osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz
15
+ adebc179e0e3577c189c86e11ff67c703bea148b 336100 osmo-trx_1.4.1.10.0404.202212020004.tar.xz
16
Checksums-Sha256:
17
- f865be403cccf1d6f45caf830fde037076d2791437368d8e4ee951be481d3b71 336312 osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz
18
+ d6dc8b24c867bb394cc777b3ecf96defe989785ad7efb85f9126769df9dba832 336100 osmo-trx_1.4.1.10.0404.202212020004.tar.xz
19
Files:
20
- a39032d65c60ef6c1927fcbd1e89ee48 336312 osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz
21
+ 52edd17b36669e5bd55abefbd166ed31 336100 osmo-trx_1.4.1.10.0404.202212020004.tar.xz
22
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/.tarball-version -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/.tarball-version
Changed
4
1
2
-1.4.1.7-f2f3.202212010004
3
+1.4.1.10-0404.202212020004
4
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/Transceiver52M/Transceiver.h -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/Transceiver52M/Transceiver.h
Changed
10
1
2
3
/* Received noise energy levels */
4
float mNoiseLev;
5
- noiseVector mNoises;
6
+ avgVector mNoises;
7
8
/* Shadowed downlink attenuation */
9
int mPower;
10
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/Transceiver52M/radioVector.cpp -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/Transceiver52M/radioVector.cpp
Changed
30
1
2
return true;
3
}
4
5
-noiseVector::noiseVector(size_t size)
6
+avgVector::avgVector(size_t size)
7
: std::vector<float>(size), itr(0)
8
{
9
}
10
11
-float noiseVector::avg() const
12
+float avgVector::avg() const
13
{
14
float val = 0.0;
15
16
+ if (!size())
17
+ return 0.0f;
18
+
19
for (size_t i = 0; i < size(); i++)
20
val += (*this)i;
21
22
return val / (float) size();
23
}
24
25
-bool noiseVector::insert(float val)
26
+bool avgVector::insert(float val)
27
{
28
if (!size())
29
return false;
30
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/Transceiver52M/radioVector.h -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/Transceiver52M/radioVector.h
Changed
13
1
2
GSM::Time mTime;
3
};
4
5
-class noiseVector : std::vector<float> {
6
+class avgVector : std::vector<float> {
7
public:
8
- noiseVector(size_t size = 0);
9
+ avgVector(size_t size = 0);
10
bool insert(float val);
11
float avg() const;
12
13
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/contrib/osmo-trx.spec.in -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/contrib/osmo-trx.spec.in
Changed
55
1
2
# published by the Open Source Initiative.
3
4
Name: osmo-trx
5
-Requires: osmocom-nightly = 202212010004
6
+Requires: osmocom-nightly = 202212020004
7
Version: @VERSION@
8
Release: 0
9
Summary: SDR transceiver that implements Layer 1 of a GSM BTS
10
11
generations of mobile phone networks. (post-2G/GSM)
12
13
%package uhd
14
-Requires: osmocom-nightly = 202212010004
15
+Requires: osmocom-nightly = 202212020004
16
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (UHD)
17
Group: Productivity/Telephony/Servers
18
Requires: uhd-firmware
19
20
21
%if ! 0%{?centos_ver}
22
%package usrp1
23
-Requires: osmocom-nightly = 202212010004
24
+Requires: osmocom-nightly = 202212020004
25
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (USRP1)
26
Group: Productivity/Telephony/Servers
27
28
29
generations of mobile phone networks. (post-2G/GSM)
30
31
%package lms
32
-Requires: osmocom-nightly = 202212010004
33
+Requires: osmocom-nightly = 202212020004
34
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (LimeSuite)
35
Group: Productivity/Telephony/Servers
36
37
38
%endif
39
40
%package ipc
41
-Requires: osmocom-nightly = 202212010004
42
+Requires: osmocom-nightly = 202212020004
43
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (IPC)
44
Group: Productivity/Telephony/Servers
45
46
47
generations of mobile phone networks. (post-2G/GSM)
48
49
%package ipc-test
50
-Requires: osmocom-nightly = 202212010004
51
+Requires: osmocom-nightly = 202212020004
52
Summary: SDR transceiver that implements Layer 1 of a GSM BTS (IPC) driver test utility
53
Group: Productivity/Telephony/Servers
54
55
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/debian/changelog -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/debian/changelog
Changed
12
1
2
-osmo-trx (1.4.1.7.f2f3.202212010004) unstable; urgency=medium
3
+osmo-trx (1.4.1.10.0404.202212020004) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom nightly feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Thu, 01 Dec 2022 00:05:53 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Fri, 02 Dec 2022 00:05:49 +0000
9
10
osmo-trx (1.4.1) unstable; urgency=medium
11
12
osmo-trx_1.4.1.7.f2f3.202212010004.tar.xz/debian/control -> osmo-trx_1.4.1.10.0404.202212020004.tar.xz/debian/control
Changed
62
1
2
Homepage: https://projects.osmocom.org/projects/osmotrx
3
4
Package: osmo-trx
5
-Depends: osmocom-nightly (= 202212010004), osmo-trx-uhd
6
+Depends: osmocom-nightly (= 202212020004), osmo-trx-uhd
7
Architecture: all
8
Description: Metapackage for osmo-trx-uhd
9
10
11
Architecture: any
12
Section: debug
13
Priority: extra
14
-Depends: osmocom-nightly (= 202212010004), osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), osmo-trx-lms (= ${binary:Version}), osmo-trx-ipc (= ${binary:Version}), ${misc:Depends}
15
+Depends: osmocom-nightly (= 202212020004), osmo-trx-uhd (= ${binary:Version}), osmo-trx-usrp1 (= ${binary:Version}), osmo-trx-lms (= ${binary:Version}), osmo-trx-ipc (= ${binary:Version}), ${misc:Depends}
16
Description: Debug symbols for the osmo-trx-*
17
Make debugging possible
18
19
Package: osmo-trx-uhd
20
Architecture: any
21
-Depends: osmocom-nightly (= 202212010004), ${shlibs:Depends}, ${misc:Depends}
22
+Depends: osmocom-nightly (= 202212020004), ${shlibs:Depends}, ${misc:Depends}
23
Description: SDR transceiver that implements Layer 1 of a GSM BTS (UHD)
24
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
25
physical layer of a BTS comprising the following 3GPP specifications:
26
27
28
Package: osmo-trx-usrp1
29
Architecture: any
30
-Depends: osmocom-nightly (= 202212010004), ${shlibs:Depends}, ${misc:Depends}
31
+Depends: osmocom-nightly (= 202212020004), ${shlibs:Depends}, ${misc:Depends}
32
Description: SDR transceiver that implements Layer 1 of a GSM BTS (USRP1)
33
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
34
physical layer of a BTS comprising the following 3GPP specifications:
35
36
37
Package: osmo-trx-lms
38
Architecture: any
39
-Depends: osmocom-nightly (= 202212010004), ${shlibs:Depends}, ${misc:Depends}
40
+Depends: osmocom-nightly (= 202212020004), ${shlibs:Depends}, ${misc:Depends}
41
Description: SDR transceiver that implements Layer 1 of a GSM BTS (LimeSuite)
42
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
43
physical layer of a BTS comprising the following 3GPP specifications:
44
45
46
Package: osmo-trx-ipc
47
Architecture: any
48
-Depends: osmocom-nightly (= 202212010004), ${shlibs:Depends}, ${misc:Depends}
49
+Depends: osmocom-nightly (= 202212020004), ${shlibs:Depends}, ${misc:Depends}
50
Description: SDR transceiver that implements Layer 1 of a GSM BTS (generic IPC)
51
OsmoTRX is a software-defined radio transceiver that implements the Layer 1
52
physical layer of a BTS comprising the following 3GPP specifications:
53
54
Architecture: all
55
Section: doc
56
Priority: optional
57
-Depends: osmocom-nightly (= 202212010004), ${misc:Depends}
58
+Depends: osmocom-nightly (= 202212020004), ${misc:Depends}
59
Description: ${misc:Package} PDF documentation
60
Various manuals: user manual, VTY reference manual and/or
61
protocol/interface manuals.
62
osmo-trx_1.4.1.10.0404.202212020004.tar.xz/osmocom-bb
Added
2
1
+(directory)
2