This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The Open Source GSM Base Band stack".
The branch, fixeria/fake_trx has been updated
via 9a66a6b569d56012717f4993f6b12f98f4bbe1cd (commit)
via 38d8da51789a44e13247f0085c79d6622a1849c8 (commit)
via 13f8f6a33ecd5852e1af20a0393103999af00c17 (commit)
via c59ab5a3ce28cd91331c9e99c06ef99d4b696f16 (commit)
via aa9e81e7aa169133bc27b752beb0e354f2533b30 (commit)
via b0f1dff67729bdb6cf9b12a0e718fd9900e16d74 (commit)
via a4857c4f37cc2aaf23abf96a616d1d084e8311e3 (commit)
via bd5d1e8c1e56110e201ffd133126bd49c3aab711 (commit)
from 7242eb94255f82212d50098d416c05faaf86064a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmocom-bb/commit/?id=9a66a6b569d56012717f4993f6b12…
commit 9a66a6b569d56012717f4993f6b12f98f4bbe1cd
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 08:26:24 2017 +0700
host/trxcon/l1ctl.c: handle L1CTL_PM_REQ correctly
Change-Id: Ib5a2198f21e747b6169ef141817ef22b241ef9fa
http://cgit.osmocom.org/osmocom-bb/commit/?id=38d8da51789a44e13247f0085c79d…
commit 38d8da51789a44e13247f0085c79d6622a1849c8
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 08:06:07 2017 +0700
fake_trx: implement power measurement emulation
This change introduces a new class named FakePM, which is intended
to generate pseudo-random power levels for base stations and noise
levels inactive frequencies.
Also, there is a new command in BB CTRL, which instructs transceiver
to perform a power measurement on requested frequency. As we work in
virtual Um-interface, a FakePM instance is used to provide some fake
power levels.
Change-Id: If48c12fd0b1ba10e1cf76559b359e17a1256617d
http://cgit.osmocom.org/osmocom-bb/commit/?id=13f8f6a33ecd5852e1af20a039310…
commit 13f8f6a33ecd5852e1af20a0393103999af00c17
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 05:49:48 2017 +0700
fake_trx/ctrl_if.py: allow adding custom params to response
Change-Id: I551bb425c25a5c978801d9e1e033b4ba352e259f
http://cgit.osmocom.org/osmocom-bb/commit/?id=c59ab5a3ce28cd91331c9e99c06ef…
commit c59ab5a3ce28cd91331c9e99c06ef99d4b696f16
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 06:25:37 2017 +0700
fake_trx/ctrl_cmd.py: print response to stdout
Change-Id: Icdbb1802b81eddf42786fafcf96200a60db3cc24
http://cgit.osmocom.org/osmocom-bb/commit/?id=aa9e81e7aa169133bc27b752beb0e…
commit aa9e81e7aa169133bc27b752beb0e354f2533b30
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 05:32:19 2017 +0700
fake_trx: fix copy-paste error
Change-Id: I9a6b294ad3501aa26d92667a995d08ca3be03da4
http://cgit.osmocom.org/osmocom-bb/commit/?id=b0f1dff67729bdb6cf9b12a0e718f…
commit b0f1dff67729bdb6cf9b12a0e718fd9900e16d74
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 04:10:41 2017 +0700
host/trxcon/trx_if.c: add power measurement command
Change-Id: Ib947b60248cafad4edeb7e49c2bd3a1f81696239
http://cgit.osmocom.org/osmocom-bb/commit/?id=a4857c4f37cc2aaf23abf96a616d1…
commit a4857c4f37cc2aaf23abf96a616d1d084e8311e3
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 03:19:13 2017 +0700
host/trxcon/trx_if.c: simplify response matching
Previously, we had both length and string matching of request and
response. To be able to implement commands with additional params
in the future, this change drops the length matching part.
Change-Id: Id4c50115f5f1b1da450ff8b8dcfd6ccf572d23f5
http://cgit.osmocom.org/osmocom-bb/commit/?id=bd5d1e8c1e56110e201ffd133126b…
commit bd5d1e8c1e56110e201ffd133126bd49c3aab711
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 14 01:47:40 2017 +0700
host/trxcon/scheduler: confirm successful RACH requests
Change-Id: I079ecebbeeb3843288118fbb55fa520af22859bb
-----------------------------------------------------------------------
Summary of changes:
src/host/trxcon/l1ctl.c | 16 ++----
src/host/trxcon/sched_lchan_handlers.c | 3 ++
src/host/trxcon/trx_if.c | 65 ++++++++++++++++++++++++-
src/host/trxcon/trx_if.h | 5 ++
src/target/fake_trx/ctrl_cmd.py | 7 ++-
src/target/fake_trx/ctrl_if.py | 13 ++++-
src/target/fake_trx/ctrl_if_bb.py | 16 +++++-
src/target/fake_trx/ctrl_if_bts.py | 13 ++++-
src/target/fake_trx/{udp_link.py => fake_pm.py} | 48 +++++++++---------
src/target/fake_trx/fake_trx.py | 10 ++++
10 files changed, 153 insertions(+), 43 deletions(-)
copy src/target/fake_trx/{udp_link.py => fake_pm.py} (54%)
hooks/post-receive
--
The Open Source GSM Base Band stack