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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 250d77f8dfe4e9ce3ccbcdb2e5695bd819178318 (commit)
via 53ce11ab955de487063442d6e83a034f2f5a695b (commit)
from 59d0c2cca64c9efe199733fc04708cc500f44090 (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/osmo-bts/commit/?id=250d77f8dfe4e9ce3ccbcdb2e5695bd…
commit 250d77f8dfe4e9ce3ccbcdb2e5695bd819178318
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Jun 23 18:26:24 2017 +0200
Add loopback support for PDTCH
This add support for BTS-side lookback of PDTCH channels.
If lchan-loopback is enabled, We take the uplink frames as received in
PH-DATA.ind and put them into the dl_tch_queue for that lchan. When we
receive PH-RTS.ind, we dequeue frames from that queue and transmit them
in downlink. If no frame is found in queue, we transmit an empty
(all-zero) frame of 23 bytes (CS-1).
Change-Id: Idd07a3f4a88c38398d3e844333c0104e2de23864
http://cgit.osmocom.org/osmo-bts/commit/?id=53ce11ab955de487063442d6e83a034…
commit 53ce11ab955de487063442d6e83a034f2f5a695b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Jun 24 02:09:43 2017 +0200
TRX: Use timerfd and CLOCK_MONOTONIC for GSM frame timer
using gettimeofday() is not suitable for the GSM frame timer, as it
relies on the normal 'wall clock' system time, which may be adjusted by
ntp, gps or other means at runtime.
Switching to a different clock source means we cannot use
osmo_timer_list anymore, but timerfd integrates just fine with our
libosmocore select() loop handling.
Change-Id: I51b19adde14ebb7ef3bb863d45e06243c323e22e
Closes: #2325
-----------------------------------------------------------------------
Summary of changes:
src/common/l1sap.c | 116 ++++++++++----
src/osmo-bts-trx/scheduler_trx.c | 330 +++++++++++++++++++++++++++++----------
src/osmo-bts-trx/trx_vty.c | 3 +-
3 files changed, 335 insertions(+), 114 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)