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, users/fixeria/sdr_phy has been created
at 65df421c579737b9078a4ff637351ee1595cf85b (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmocom-bb/commit/?id=65df421c579737b9078a4ff637351…
commit 65df421c579737b9078a4ff637351ee1595cf85b
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Mon Jul 25 00:20:37 2016 +0600
host/trxcon: initial release of L1CTL handlers
Now it's possible to handle the following requests
from layer23 apps:
- L1CTL_FBSB_REQ
- L1CTL_PM_REQ
- L1CTL_RESET_REQ
- L1CTL_ECHO_REQ
It should be noted, that the L1CTL_PM_REQ isn't
handled correctly yet, due to required task isn't
implemented on the TRX side yet. Instead of this,
temporary we are sending some fake responses.
Change-Id: I343eca3e20922ddd83e06231811200b26da442f3
http://cgit.osmocom.org/osmocom-bb/commit/?id=d581a51efee0661d3f8aa78c67efb…
commit d581a51efee0661d3f8aa78c67efbef926541edf
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Wed May 31 09:28:40 2017 +0700
host/trxcon: integrate osmo-fsm framework
This change introduces the following state machines:
- trxcon_app_fsm - main application state machine.
This state machine handles different events, raised
from program modules (such as trx_if.c or l1ctl.c).
- l1ctl_link_fsm - L1CTL server state machine.
- trx_interface_fsm - TRX interface state machine.
All program modules (such as trx_if.c or l1ctl.c)
are independent from each other. In other words,
one module cannot call methods from another, e.g.
L1CTL handlers from l1ctl.c aren't able to send
any command to transceiver directly.
Instead of that, they use shared event set to notify
the main state machine about something. Depending on
current state and received event main state machine
'decides' what to do. This approach would allow to
easily reuse the source code anywhere almost 'as is'.
Change-Id: I7ee6fc891abe5f775f5b7ebbf093181a97950dea
http://cgit.osmocom.org/osmocom-bb/commit/?id=6a098d2632ea9a620c7dc33bd047d…
commit 6a098d2632ea9a620c7dc33bd047d8fc3d48355c
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat Jun 3 19:02:20 2017 +0700
host/trxcon/trx_if.c: add ECHO command
This command should be used to check transceiver availability.
Change-Id: I6af2d5e413ff7ab751cb34e1659742b0f59b6cca
http://cgit.osmocom.org/osmocom-bb/commit/?id=f37861d583cefc88994fd691b0a45…
commit f37861d583cefc88994fd691b0a45fec7ff5fc56
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sun Jul 24 01:40:41 2016 +0600
host/trxcon: initial release of transceiver interface
This is the second side of the 'OsmocomBB <-> SDR' bridge.
Most of source code taken from the OsmoBTS project.
Change-Id: I96fa3ada05d010f31af419a4950fd8ae2b62ef34
http://cgit.osmocom.org/osmocom-bb/commit/?id=bedbf921431b8c7ecd31800cd4289…
commit bedbf921431b8c7ecd31800cd428930db42fa496
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Jul 22 22:57:50 2016 +0600
host/trxcon: initial release of L1CTL interface
There are two sides of the 'OsmocomBB <-> SDR' bridge. One of
them is the L1CTL interface, which is used by existing layer23
applications to drive GSM L1. Exactly this interface is provided
by the osmocon application, but instead of forwarding messages
between both host software and firmware we need to handle incoming
messages from layer23 applications, perform some GSM L1 specific
conversations (coding, mapping, interleaving, etc.), then finally
forward them to transceiver through the scheduler. And vice versa.
This code is just a basic implementation of UNIX socket handlers,
so currently we can only accept and drop connections from layer23
applications.
Change-Id: I58d069bcc7742b42c0bf95e52063933bf2c352ff
http://cgit.osmocom.org/osmocom-bb/commit/?id=19ac29776e2fd77a19aee734d0924…
commit 19ac29776e2fd77a19aee734d0924986823f872c
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Thu Jun 30 00:41:58 2016 +0600
host/trxcon: introduce a new 'trxcon' application
This app is similar to the osmocon, but designed to
connect L2 & L3 apps with SDR transceiver insted of
obsolete Calypso based hardware.
Change-Id: Ie3c17f19aad9c26f3c49966a7c96b65911f62369
-----------------------------------------------------------------------
hooks/post-receive
--
The Open Source GSM Base Band stack
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 d36b3a84638d6db940387f0e18c98855202f554d (commit)
from e91cd2b0887b0ed41a3bb4c49e4478defd208554 (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=d36b3a84638d6db940387f0e18c9885…
commit d36b3a84638d6db940387f0e18c98855202f554d
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 2 19:38:07 2017 +0200
Revert "Add version to phy_instance"
This reverts commit 9eeb0b1a136fc8c24a86cb4d832c264674c10db0.
This commit caused osmo-gsm-tester test runs for the sysmoBTS to fail with
SIGABRT consistently. See below redmine issues.
In osmo-bts-sysmo/l1_if.c, it uses talloc_asprintf to write to the char
version[MAX_VERSION_LENGTH]; talloc_asprintf() however is intended to work on
string buffers allocated by talloc, and attempts to reallocate version[].
Furthermore, it is not clear why the patch passes a 'data' arg to
app_info_sys_compl_cb() that is not used.
Hence I will revert this instead of trying to fix. Please resolve issues and
re-submit.
Related: OS#2316 OS#1614
Change-Id: I2c9fd5e6739c1750365c0241476ce4b1aa2df3d4
-----------------------------------------------------------------------
Summary of changes:
include/osmo-bts/phy_link.h | 2 +-
src/osmo-bts-octphy/l1_oml.c | 5 ++---
src/osmo-bts-sysmo/l1_if.c | 4 ----
3 files changed, 3 insertions(+), 8 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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, neels/test has been updated
discards eb218f78b85698f8be12914112a5de30b3812694 (commit)
discards b1fdbc952f807cfe341e67819f520b3e16e2bb15 (commit)
via 51c2e69b62a9b7c428318bb635a049e4041369b6 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (eb218f78b85698f8be12914112a5de30b3812694)
\
N -- N -- N (51c2e69b62a9b7c428318bb635a049e4041369b6)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
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=51c2e69b62a9b7c428318bb635a049e…
commit 51c2e69b62a9b7c428318bb635a049e4041369b6
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 2 19:38:07 2017 +0200
Revert "Add version to phy_instance"
This reverts commit 9eeb0b1a136fc8c24a86cb4d832c264674c10db0.
After this commit, osmo-gsm-tester test runs for the sysmoBTS failed with
SIGABRT consistently. See below issue:
Change-Id: I2c9fd5e6739c1750365c0241476ce4b1aa2df3d4
Related: OS#2316
-----------------------------------------------------------------------
Summary of changes:
src/common/oml.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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, neels/test has been created
at eb218f78b85698f8be12914112a5de30b3812694 (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-bts/commit/?id=eb218f78b85698f8be12914112a5de3…
commit eb218f78b85698f8be12914112a5de30b3812694
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 2 19:38:07 2017 +0200
Revert "Add version to phy_instance"
This reverts commit 9eeb0b1a136fc8c24a86cb4d832c264674c10db0.
After this commit, osmo-gsm-tester test runs for the sysmoBTS failed with
SIGABRT consistently. See below issue:
Change-Id: I2c9fd5e6739c1750365c0241476ce4b1aa2df3d4
Related: OS#2316
http://cgit.osmocom.org/osmo-bts/commit/?id=b1fdbc952f807cfe341e67819f520b3…
commit b1fdbc952f807cfe341e67819f520b3e16e2bb15
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Jun 2 17:55:12 2017 +0200
common/oml.c: fix possible NULL dereference
Introduced in recent e91cd2b0887b0ed41a3bb4c49e4478defd208554
Change-Id: Ic26b46f6235d76c1fee53f7e3216b84d8b776814
-----------------------------------------------------------------------
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, pmaier/aoip has been updated
via 6c4339f77f4d97a8180c81521b63c50dbd8333a4 (commit)
from aeb348f51ddaf72ebd5c8b423290df51a1ae4528 (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/openbsc/commit/?id=6c4339f77f4d97a8180c81521b63c50d…
commit 6c4339f77f4d97a8180c81521b63c50dbd8333a4
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jun 2 17:48:37 2017 +0200
fixup for: aoip: signal channel type to BSC
The channel type and the speech codec element is now
signalled to the BSC. The BSC checks both fields and
select a codec by its preference. The choosen speech
codec and the choosen channel (type) is returned to
the MSC. Currently the MSC ignores the return values
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/a_iface.c | 35 +++++-
openbsc/src/osmo-bsc/osmo_bsc_audio.c | 7 +-
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 228 +++++++++++++++++++++++++---------
3 files changed, 204 insertions(+), 66 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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, sysmocom/0.3.5-stable has been updated
via a4bd813081e788012c72f34d31150cdf02db307f (commit)
from 1a2ff06d206fc4ff3cb8170ebe2b5570addc5be3 (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=a4bd813081e788012c72f34d31150cd…
commit a4bd813081e788012c72f34d31150cdf02db307f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun May 28 16:00:36 2017 +0200
sysmobts: Re-order the bit-endianness of every HR codec parameter
The so-called "RTP mode" of the DSP contains a bug on all firmware
versions < 5.3.3 which causes the bit-order within each of the
non-aligned codec parameters to be wrong. Introduce a function
originally written by Sylvain Munaut during 32C3 in
http://git.osmocom.org/openbsc/commit/?h=sylvain/32c3_codec&id=5b4a16bbe93a…
to bring the bits into [the correct] order.
This has never been seen in a "pure sysmoBTS" setup, as all BTSs would
use the same (wrong) bit-ordering and thus interoperate. This patch now
checks for an affected DSP firmware version and then jumbles (old DSP
firmware version) or does nothing (new DSP firmware version).
Change-Id: Ia0eee4f514fb8fd81c052bb44a4facba898d6afb
Closes: SYS#2452
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-sysmo/l1_if.c | 3 +++
src/osmo-bts-sysmo/l1_if.h | 15 +++++++++++
src/osmo-bts-sysmo/tch.c | 64 ++++++++++++++++++++++++++++++++++++++++------
3 files changed, 74 insertions(+), 8 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 "OpenBTS' transceiver retro-fit".
The branch, fairwaves/WIP-decoder has been updated
discards 09c75caa8351817f8249e2ef9ceb48f9c22efd87 (commit)
discards 1d8f443bb855b3b8f642e83b2d7413e089968343 (commit)
discards c83562e106fb73970e600ef7988aa8994ae20c21 (commit)
discards c201b7b5ca3a0996718e54e4a2de3792cb9d3764 (commit)
via 2061843c3d66d386009f0c90123a832085c0ad54 (commit)
via 63d0f2a496fd87a2a047658c87f6a1a75d664535 (commit)
via 6459ddc55c63c738685c9a98e5a922eaed8e8e2d (commit)
via 7a33c7221b9cebf0786b77fc324e9f2995ca729d (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (09c75caa8351817f8249e2ef9ceb48f9c22efd87)
\
N -- N -- N (2061843c3d66d386009f0c90123a832085c0ad54)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
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-trx/commit/?id=2061843c3d66d386009f0c90123a832…
commit 2061843c3d66d386009f0c90123a832085c0ad54
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Wed Apr 20 08:49:38 2016 +0300
osmo-trx-dec: Offline demodulation tool.
Change-Id: Ic5b59c7fe1a0c02d962b36de2fd5d7fc9a02f266
http://cgit.osmocom.org/osmo-trx/commit/?id=63d0f2a496fd87a2a047658c87f6a1a…
commit 63d0f2a496fd87a2a047658c87f6a1a75d664535
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Fri Mar 17 20:47:44 2017 -0700
WIP:sigProcLib: Reduce burst detection window for NB.
Otherwise we detect bursts with search window far beyond specified.
Change-Id: If3cb40d2311504a13c03e1fbccad663ac201d9a4
http://cgit.osmocom.org/osmo-trx/commit/?id=6459ddc55c63c738685c9a98e5a922e…
commit 6459ddc55c63c738685c9a98e5a922eaed8e8e2d
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Wed Mar 15 23:46:43 2017 +0300
transceiver: RSSI was calculated reverse.
http://cgit.osmocom.org/osmo-trx/commit/?id=7a33c7221b9cebf0786b77fc324e9f2…
commit 7a33c7221b9cebf0786b77fc324e9f2995ca729d
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun Mar 26 21:49:46 2017 -0700
osmo-trx-gen: generates waveform files aka IQ binary files in a number of formats.
Generated files can be used as an input to osmo-trx-dec or load them into signal
generators.
Change-Id: I555d99a632755b5bfcbaf3501a501613c2859d4e
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-trx-gen.cpp | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 "OpenBTS' transceiver retro-fit".
The branch, fairwaves/WIP-decoder has been updated
discards 9a5770daacfc86d77b8cfebcc6c5fe6df081ff85 (commit)
discards ca512a432f9f2f2a7f55e3a879fff0b9fe155b28 (commit)
discards c7ffb95df61a67f203bf9a04309218f9ea1d948f (commit)
discards 531f30f66bf94da455c869c2223a732211b3d85f (commit)
discards a49e4cbe0a5e2706f289917945898d681391b9ec (commit)
discards 86b3fddecbf549f28173f8f3792487cc53c43066 (commit)
discards baf2c74ef1a7f3aeddac486717b2139df566174a (commit)
discards 0b8c592581b913abbb8da033413fedf5dea03b79 (commit)
discards 120a595cb17a67d8cb6cc103be4ee9ef9747c3cd (commit)
discards 3520cc3a25c3b44954bba02f328cb67711ebd938 (commit)
via 09c75caa8351817f8249e2ef9ceb48f9c22efd87 (commit)
via 1d8f443bb855b3b8f642e83b2d7413e089968343 (commit)
via c83562e106fb73970e600ef7988aa8994ae20c21 (commit)
via c201b7b5ca3a0996718e54e4a2de3792cb9d3764 (commit)
via dd62d4baa0871f4a9b22673bf5bdef611ef69567 (commit)
via 09130c81a7ca88030982f3783d551f074bb6558a (commit)
via 0c4e24d197841960a792d0409cacde16873be67d (commit)
via 15f9d95f5f44db3ff92ee157c37e4915bffb9129 (commit)
via 73dbccda78d2eb77691f62202a4e3cbeabf93410 (commit)
via 5e65b531e0b9253c33a476f50bffc23eb4f0afa0 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (9a5770daacfc86d77b8cfebcc6c5fe6df081ff85)
\
N -- N -- N (09c75caa8351817f8249e2ef9ceb48f9c22efd87)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
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-trx/commit/?id=09c75caa8351817f8249e2ef9ceb48f…
commit 09c75caa8351817f8249e2ef9ceb48f9c22efd87
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Wed Apr 20 08:49:38 2016 +0300
osmo-trx-dec: Offline demodulation tool.
Change-Id: Ic5b59c7fe1a0c02d962b36de2fd5d7fc9a02f266
http://cgit.osmocom.org/osmo-trx/commit/?id=1d8f443bb855b3b8f642e83b2d7413e…
commit 1d8f443bb855b3b8f642e83b2d7413e089968343
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Fri Mar 17 20:47:44 2017 -0700
WIP:sigProcLib: Reduce burst detection window for NB.
Otherwise we detect bursts with search window far beyond specified.
Change-Id: If3cb40d2311504a13c03e1fbccad663ac201d9a4
http://cgit.osmocom.org/osmo-trx/commit/?id=c83562e106fb73970e600ef7988aa89…
commit c83562e106fb73970e600ef7988aa8994ae20c21
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Wed Mar 15 23:46:43 2017 +0300
transceiver: RSSI was calculated reverse.
http://cgit.osmocom.org/osmo-trx/commit/?id=c201b7b5ca3a0996718e54e4a2de379…
commit c201b7b5ca3a0996718e54e4a2de3792cb9d3764
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun Mar 26 21:49:46 2017 -0700
osmo-trx-gen: generates waveform files aka IQ binary files in a number of formats.
Generated files can be used as an input to osmo-trx-dec or load them into signal
generators.
Change-Id: I555d99a632755b5bfcbaf3501a501613c2859d4e
http://cgit.osmocom.org/osmo-trx/commit/?id=dd62d4baa0871f4a9b22673bf5bdef6…
commit dd62d4baa0871f4a9b22673bf5bdef611ef69567
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun Apr 2 11:27:03 2017 +0200
WIP:sigProcLib: Use a known PRBS to generate random Normal Bursts.
ToDo:
1) Add seed randomization.
2) An option to use a longer PRBS?
3) Use a known PRBS for other types of bursts.
Change-Id: Ib7fdf2f415457da38b78129532d5b80a4a94ecd3
http://cgit.osmocom.org/osmo-trx/commit/?id=09130c81a7ca88030982f3783d551f0…
commit 09130c81a7ca88030982f3783d551f074bb6558a
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Wed Mar 15 21:35:16 2017 +0300
osmo-trx: Separate command line switch to enable EDGE filler.
Now -r comand line switch always enables GMSK filler even when EDGE mode is
enabled with -e switch. If you want to enable EDGE filler, use -E switch.
Change-Id: Ic8808bbe3f06740ef3fec1d1865ecb57fbcfabab
http://cgit.osmocom.org/osmo-trx/commit/?id=0c4e24d197841960a792d0409cacde1…
commit 0c4e24d197841960a792d0409cacde16873be67d
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sun Apr 2 12:45:36 2017 +0200
PRBS: a Pseudo-random binary sequence (PRBS) generator class.
Implemeted with a Galois LFSR for speed and flexibility compared to Fibonacci version.
Aliases for three popular PRBS' are added for convenience - PRBS9, PRBS15 and PRBS64.
Note that we can't test PRBS64 completely, because the sequence is too long to
be generated.
Change-Id: Ib5331ba5d0b5819929541686fdd87905e2177b74
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/Makefile.am | 4 ++
Transceiver52M/osmo-trx-dec.cpp | 99 ++++++++++++++++++++++++++++++++++++-----
Transceiver52M/osmo-trx.cpp | 2 +-
3 files changed, 92 insertions(+), 13 deletions(-)
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, pmaier/aoip has been updated
via aeb348f51ddaf72ebd5c8b423290df51a1ae4528 (commit)
from 07005708a8e340d5b8edf36c5d323cb3e92397f5 (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/openbsc/commit/?id=aeb348f51ddaf72ebd5c8b423290df51…
commit aeb348f51ddaf72ebd5c8b423290df51a1ae4528
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed May 31 17:17:59 2017 +0200
aoip: signal channel type to BSC
obtain the permitted speech and the prefered channel parameters
and signal it to the MSC with the channel type field.
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/transaction.h | 3 +
openbsc/src/libmsc/a_iface.c | 112 ++++++++++++++++++++++++++++++++--
openbsc/src/libmsc/gsm_04_08.c | 30 +++++++++
3 files changed, 139 insertions(+), 6 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
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 "OpenBTS' transceiver retro-fit".
The branch, master has been updated
via 15f9d95f5f44db3ff92ee157c37e4915bffb9129 (commit)
from 73dbccda78d2eb77691f62202a4e3cbeabf93410 (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-trx/commit/?id=15f9d95f5f44db3ff92ee157c37e491…
commit 15f9d95f5f44db3ff92ee157c37e4915bffb9129
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Fri Mar 24 22:56:08 2017 -0700
BitVector: Remove Generator class.
It is not used in osmo-trx, because we're not doing FEC or CRC checks.
Change-Id: I1509e785c1187ebdafe5b2518bd298fbbd1cd036
-----------------------------------------------------------------------
Summary of changes:
CommonLibs/BitVector.cpp | 19 --------------
CommonLibs/BitVector.h | 67 ------------------------------------------------
2 files changed, 86 deletions(-)
hooks/post-receive
--
OpenBTS' transceiver retro-fit