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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via c5b8d939ead2dc57be9cce147b0ab9c833e74035 (commit)
from f60efb528ce03e0fa3209963c5d7bcff61689381 (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-gsm-manuals/commit/?id=c5b8d939ead2dc57be9cce1…
commit c5b8d939ead2dc57be9cce147b0ab9c833e74035
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed May 31 21:22:42 2017 +0200
BSC: Add series of message sequence charts about MGCP handling
Change-Id: Id5948677d23a58ce112b57f91bea953a93baab4c
-----------------------------------------------------------------------
Summary of changes:
OsmoBSC/Makefile | 6 +-
.../aoip-mgw-options-docinfo.xml | 13 ++--
OsmoBSC/aoip-mgw-options.adoc | 77 ++++++++++++++++++++++
OsmoBSC/mgw/classic-bsc.msc | 39 +++++++++++
OsmoBSC/mgw/osmo-bsc-new-mgw-e1.msc | 50 ++++++++++++++
OsmoBSC/mgw/osmo-bsc-new-mgw.msc | 71 ++++++++++++++++++++
OsmoBSC/mgw/osmo-bsc-old-sccplite.msc | 64 ++++++++++++++++++
7 files changed, 313 insertions(+), 7 deletions(-)
copy OsmoPCU/osmopcu-usermanual-docinfo.xml => OsmoBSC/aoip-mgw-options-docinfo.xml (76%)
create mode 100644 OsmoBSC/aoip-mgw-options.adoc
create mode 100644 OsmoBSC/mgw/classic-bsc.msc
create mode 100644 OsmoBSC/mgw/osmo-bsc-new-mgw-e1.msc
create mode 100644 OsmoBSC/mgw/osmo-bsc-new-mgw.msc
create mode 100644 OsmoBSC/mgw/osmo-bsc-old-sccplite.msc
hooks/post-receive
--
Manuals for Osmocom GSM components
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 082bbbf8feec0a9a86d7484476e768971fe3b646 (commit)
from 3bd763d2a10e19980505c90242a2eae9e2f6b4cb (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=082bbbf8feec0a9a86d7484476e7689…
commit 082bbbf8feec0a9a86d7484476e768971fe3b646
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:
.gitignore | 1 +
CommonLibs/Makefile.am | 4 +
CommonLibs/PRBS.h | 110 +++++++++++++++++++++
.../convert_base.c => CommonLibs/PRBSTest.cpp | 30 +++---
4 files changed, 134 insertions(+), 11 deletions(-)
create mode 100644 CommonLibs/PRBS.h
copy Transceiver52M/common/convert_base.c => CommonLibs/PRBSTest.cpp (57%)
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, master has been updated
via 3bd763d2a10e19980505c90242a2eae9e2f6b4cb (commit)
via ee5735768213f8724b978cd9180f088721e0cde0 (commit)
via 8537b90dbefd98eb91915aaa32e7b623bf3cd581 (commit)
via 038fd7fd70cc4523ed9872bbdfd848cbf4103f42 (commit)
via 0cd246c27ad8cdfc39671ed217b31635d57ef937 (commit)
via 61fbf2ec95430d1f76f301de80e765114face5a2 (commit)
from 15f9d95f5f44db3ff92ee157c37e4915bffb9129 (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=3bd763d2a10e19980505c90242a2eae…
commit 3bd763d2a10e19980505c90242a2eae9e2f6b4cb
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:46:51 2017 +0300
ssedetect: call __builtin_cpu_supports() only if supported
Some compilers don't support the __builtin_cpu_supports built-in,
so let's make them able to compile the project anyway.
Change-Id: I0c90402d8e4c9f196c54b066ff30891c8de3ad2b
http://cgit.osmocom.org/osmo-trx/commit/?id=ee5735768213f8724b978cd9180f088…
commit ee5735768213f8724b978cd9180f088721e0cde0
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:34:34 2017 +0300
buildenv: check for __builtin_cpu_supports call support
The '__builtin_cpu_supports' is a GCC's built-in function which
returns a positive integer if the run-time CPU supports specified
SIMD feature and returns 0 otherwise.
This change adds a new check, whether compiler supports this call.
See /gcc/X86-Built-in-Functions.html at gcc.gnu.org for reference.
Change-Id: I797f638573e8c3aae39c28abb157ce2ac419f3f7
http://cgit.osmocom.org/osmo-trx/commit/?id=8537b90dbefd98eb91915aaa32e7b62…
commit 8537b90dbefd98eb91915aaa32e7b623bf3cd581
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:29:32 2017 +0300
buildenv: cosmetic changes
Change-Id: I9c52f2981513fa6322bdf992215e3e099ac3ddee
http://cgit.osmocom.org/osmo-trx/commit/?id=038fd7fd70cc4523ed9872bbdfd848c…
commit 038fd7fd70cc4523ed9872bbdfd848cbf4103f42
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:24:04 2017 +0300
buildenv: fix build on systems without SIMD support
HAVE_SSE3 and HAVE_SSE4_1 were never defined if CPU architecture
doesn't match the (86*|x86_64*|amd64*) condition.
Change-Id: I3350b14dbc91e9b388d0b04a0ed22ba27d436313
http://cgit.osmocom.org/osmo-trx/commit/?id=0cd246c27ad8cdfc39671ed217b3163…
commit 0cd246c27ad8cdfc39671ed217b31635d57ef937
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:13:38 2017 +0300
buildenv: actually strip unused cpuid functionality
Despite the macro message says, that cpuid functionality was stripped
it was still partially preset and wasn't used anyhow.
Change-Id: I380bc9c13d29319685781ef27973afe6744fcf3d
http://cgit.osmocom.org/osmo-trx/commit/?id=61fbf2ec95430d1f76f301de80e7651…
commit 61fbf2ec95430d1f76f301de80e765114face5a2
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat May 20 01:08:55 2017 +0300
buildenv: correct the ax_sse macro description
Change-Id: I4ce65443c8a33ae9add8f6da9d911c3178472ab2
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-trx.cpp | 8 +++++
Transceiver52M/x86/convert.c | 2 ++
Transceiver52M/x86/convolve.c | 2 +-
config/ax_gcc_x86_avx_xgetbv.m4 | 79 -----------------------------------------
config/ax_gcc_x86_cpuid.m4 | 79 -----------------------------------------
config/ax_sse.m4 | 36 +++++++++----------
configure.ac | 27 ++++++++++++++
7 files changed, 54 insertions(+), 179 deletions(-)
delete mode 100644 config/ax_gcc_x86_avx_xgetbv.m4
delete mode 100644 config/ax_gcc_x86_cpuid.m4
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 31c2cfe2c5ad5218c1dc8d1f81526a9bf6b2eb04 (commit)
via 4e5f543b3156de9fe6ac74c0279b7d1805702594 (commit)
via b669ea94cb78fd9b56ee8dd9392538151349f8ba (commit)
via 8b1e4d17c7c590008b57f74a26501931ee49ef38 (commit)
via 2ce633f0ca213a7a9366ddd6e8706689ccb76ede (commit)
via 03b5ff7869922de74012e4f39f90ea6a080faac7 (commit)
via b9cdd7f8e4352976dc260414cd050de43bc3d8c1 (commit)
via f8f4254ba35432b6a342b471b9be496419cd9dd2 (commit)
via a6a4057451a9935de016a6d8deac90ad228d0965 (commit)
via 1fcd2ff62843f3e3adb738a16ff3e8c011197c86 (commit)
via 5d11eb6dcecbc6054faca30b268b34f127a3c9aa (commit)
via 72cf7ad0b9064178a9fb91d39d862c79169b5363 (commit)
from 6c4339f77f4d97a8180c81521b63c50dbd8333a4 (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=31c2cfe2c5ad5218c1dc8d1f81526a9b…
commit 31c2cfe2c5ad5218c1dc8d1f81526a9bf6b2eb04
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 17:22:07 2017 +0200
a_iface_bssap: clear lingering subscriber connections on reset
When the BSC is vanishing, the subscriber connections will stay
active until the MSC is instructed via tha A interface to clear
the connections. Unfortunately, this will most likely not be
the case because the BSC will most likeley have lost all its
state and does not know about the old connections anymore.
This patch fixes the problem by looping through the list with
the active gsm subscriber connections and clearing them manually
when the reset from the BSC is received. Only connections by the
bsc who actually executes the reset are affected. Connections
from other BSCs will not be touched.
http://cgit.osmocom.org/openbsc/commit/?id=4e5f543b3156de9fe6ac74c0279b7d18…
commit 4e5f543b3156de9fe6ac74c0279b7d1805702594
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 17:00:31 2017 +0200
cosmetic: fix typo
http://cgit.osmocom.org/openbsc/commit/?id=b669ea94cb78fd9b56ee8dd939253815…
commit b669ea94cb78fd9b56ee8dd9392538151349f8ba
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 15:36:14 2017 +0200
mgcp: make sure all endpoints are closed on startup
If the MSC is crashing and restarting, it may leave some endpoints
open. The endpoints can not be re-used until they are deleted
(DLCX). This patch sends a DLCX to all possible endpoints (usually
this is in a countable range) in order to clear possible open
endpoints from a previous run
http://cgit.osmocom.org/openbsc/commit/?id=8b1e4d17c7c590008b57f74a26501931…
commit 8b1e4d17c7c590008b57f74a26501931ee49ef38
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 15:28:39 2017 +0200
mgcp: make structs accessible from outside
struct mgcpgw_client and struct mgcp_inuse_endpoint are not
accessible from outside, making it difficult to look in the
mgcp client properties and status. The commit moves the
structs into the header file.
http://cgit.osmocom.org/openbsc/commit/?id=2ce633f0ca213a7a9366ddd6e8706689…
commit 2ce633f0ca213a7a9366ddd6e8706689ccb76ede
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 14:21:50 2017 +0200
mgcp: release no longer used endpoint identifiers
When an MGCP endpoint is deleted, we need to mark its endpoint
id as unused, so other calls can used it. This is currently not
happening. This patch fixes that.
http://cgit.osmocom.org/openbsc/commit/?id=03b5ff7869922de74012e4f39f90ea6a…
commit 03b5ff7869922de74012e4f39f90ea6a080faac7
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 14:18:47 2017 +0200
mgcp: improve endpoint management
Currently the assignment of endpoint identifiers works by just
incrementing a counter. The mgcpgw only has a limited amount
of endpoint identifiers avaliable, this means we will run out
of endpoints after only a few calls.
This commit adds a mechanism to keep track of used endpoint
identifiers so unused endpoint identifiers can be re-used
http://cgit.osmocom.org/openbsc/commit/?id=b9cdd7f8e4352976dc260414cd050de4…
commit b9cdd7f8e4352976dc260414cd050de43bc3d8c1
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 12:21:07 2017 +0200
mgcp: use mgcp DLCX command to terminate endpoint after call is done
Currently no DLCX command is sent to the mgcpgw when a call is over,
this leaves the endpoint open. This means that the endpoint can not
never be reused by other calls. This patch adds a DLCX that
terminates the the endpoint when the call is done.
http://cgit.osmocom.org/openbsc/commit/?id=f8f4254ba35432b6a342b471b9be4964…
commit f8f4254ba35432b6a342b471b9be496419cd9dd2
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jun 8 12:19:30 2017 +0200
mgcp: add DLCX command to mgcpgw client
The mgcpgw client currently lacks support for DLCX. This patch
adds a generator function to generate a DLCX command as well.
http://cgit.osmocom.org/openbsc/commit/?id=a6a4057451a9935de016a6d8deac90ad…
commit a6a4057451a9935de016a6d8deac90ad228d0965
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Jun 7 18:19:53 2017 +0200
cosmetic: fixing coding style
http://cgit.osmocom.org/openbsc/commit/?id=1fcd2ff62843f3e3adb738a16ff3e8c0…
commit 1fcd2ff62843f3e3adb738a16ff3e8c011197c86
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Jun 6 14:39:22 2017 +0200
fixup: in osmo-bsc-sigtran.h header (bsc_msc_data.h) was missing
http://cgit.osmocom.org/openbsc/commit/?id=5d11eb6dcecbc6054faca30b268b34f1…
commit 5d11eb6dcecbc6054faca30b268b34f127a3c9aa
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Jun 6 14:31:36 2017 +0200
osmo-bsc: Handle RESET/RESET-ACK properly
Improve the way the BSC executes its RESET/RESET-ACK sequence.
Currently only a simple bool variable serves as a state holder.
We set this variable to true when we receive the RESET-ACK
message. Unfortunately no further checking is done. This
patch replaces the old mechanism with a more elaborated
implementation which also detects a loss of the connection
and makes sure to reconnect properly afterwards. Also the
all open connections are closed on connection loss
http://cgit.osmocom.org/openbsc/commit/?id=72cf7ad0b9064178a9fb91d39d862c79…
commit 72cf7ad0b9064178a9fb91d39d862c79169b5363
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Jun 6 12:31:00 2017 +0200
sccp: Use osmo-stp instead of direct server/client connection
This patch adjusts the code to use osmo-stp. This is only an
intermediate solution, since we still have hardcoded parameter.
Next step is to use the VTY options from libosmo-sigtran to
issue the configurations.
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/Makefile.am | 1 +
openbsc/include/openbsc/a_iface_bssap.h | 2 +-
openbsc/include/openbsc/bsc_msc.h | 4 +-
openbsc/include/openbsc/bsc_msc_data.h | 1 +
openbsc/include/openbsc/gsm_data.h | 3 +
openbsc/include/openbsc/mgcpgw_client.h | 26 ++-
openbsc/include/openbsc/msc_ifaces.h | 2 +
.../openbsc/{a_iface.h => osmo_bsc_reset.h} | 19 ++-
openbsc/include/openbsc/osmo_bsc_sigtran.h | 9 +
openbsc/src/libmgcp/mgcpgw_client.c | 86 ++++++++--
openbsc/src/libmgcp/mgcpgw_client_vty.c | 30 ++++
openbsc/src/libmsc/a_iface.c | 54 ++++--
openbsc/src/libmsc/a_iface_bssap.c | 37 +++-
openbsc/src/libmsc/gsm_04_08.c | 3 +
openbsc/src/libmsc/msc_ifaces.c | 35 ++++
openbsc/src/osmo-bsc/Makefile.am | 1 +
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 14 +-
openbsc/src/osmo-bsc/osmo_bsc_reset.c | 190 +++++++++++++++++++++
openbsc/src/osmo-bsc/osmo_bsc_sigtran.c | 122 ++++++++-----
openbsc/src/osmo-msc/msc_main.c | 4 +
20 files changed, 549 insertions(+), 94 deletions(-)
copy openbsc/include/openbsc/{a_iface.h => osmo_bsc_reset.h} (56%)
create mode 100644 openbsc/src/osmo-bsc/osmo_bsc_reset.c
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, ttsou/siggen has been updated
discards 1cc545301d9e84825156fcf02f17d7cd11dff43e (commit)
via db259aa6ae97c174a297ef15f015f8f53cfdfa58 (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 (1cc545301d9e84825156fcf02f17d7cd11dff43e)
\
N -- N -- N (db259aa6ae97c174a297ef15f015f8f53cfdfa58)
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=db259aa6ae97c174a297ef15f015f8f…
commit db259aa6ae97c174a297ef15f015f8f53cfdfa58
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-siggen.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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, ttsou/siggen has been updated
discards 199e9732e08d318a9a60bd0ac540c4a6bb83ebfa (commit)
via 1cc545301d9e84825156fcf02f17d7cd11dff43e (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 (199e9732e08d318a9a60bd0ac540c4a6bb83ebfa)
\
N -- N -- N (1cc545301d9e84825156fcf02f17d7cd11dff43e)
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=1cc545301d9e84825156fcf02f17d7c…
commit 1cc545301d9e84825156fcf02f17d7cd11dff43e
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-siggen.cpp | 3 +--
1 file changed, 1 insertion(+), 2 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 "OpenBTS' transceiver retro-fit".
The branch, ttsou/siggen has been updated
discards d17fc27c90e932da841ae71a292d79f91b641fe0 (commit)
via 199e9732e08d318a9a60bd0ac540c4a6bb83ebfa (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 (d17fc27c90e932da841ae71a292d79f91b641fe0)
\
N -- N -- N (199e9732e08d318a9a60bd0ac540c4a6bb83ebfa)
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=199e9732e08d318a9a60bd0ac540c4a…
commit 199e9732e08d318a9a60bd0ac540c4a6bb83ebfa
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
CommonLibs/Configuration.cpp | 1 -
Transceiver52M/osmo-siggen.cpp | 73 ++++++++++++++++++++++++++++++------------
2 files changed, 52 insertions(+), 22 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 "OpenBTS' transceiver retro-fit".
The branch, ttsou/siggen has been updated
discards 50d31e869b496db8c215dfb69e44cc52327ce54c (commit)
via d17fc27c90e932da841ae71a292d79f91b641fe0 (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 (50d31e869b496db8c215dfb69e44cc52327ce54c)
\
N -- N -- N (d17fc27c90e932da841ae71a292d79f91b641fe0)
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=d17fc27c90e932da841ae71a292d79f…
commit d17fc27c90e932da841ae71a292d79f91b641fe0
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-siggen.cpp | 9 +++++----
1 file changed, 5 insertions(+), 4 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 "OpenBTS' transceiver retro-fit".
The branch, ttsou/siggen has been updated
discards bcce18ef9e5c3aee0d0898e76a563ca3ecec1175 (commit)
via 50d31e869b496db8c215dfb69e44cc52327ce54c (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 (bcce18ef9e5c3aee0d0898e76a563ca3ecec1175)
\
N -- N -- N (50d31e869b496db8c215dfb69e44cc52327ce54c)
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=50d31e869b496db8c215dfb69e44cc5…
commit 50d31e869b496db8c215dfb69e44cc52327ce54c
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-siggen.cpp | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 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 "OpenBTS' transceiver retro-fit".
The branch, ttsou/siggen has been updated
discards ae5b3703af2bb0638bf038d75eb4a648f3676c2d (commit)
via bcce18ef9e5c3aee0d0898e76a563ca3ecec1175 (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 (ae5b3703af2bb0638bf038d75eb4a648f3676c2d)
\
N -- N -- N (bcce18ef9e5c3aee0d0898e76a563ca3ecec1175)
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=bcce18ef9e5c3aee0d0898e76a563ca…
commit bcce18ef9e5c3aee0d0898e76a563ca3ecec1175
Author: Tom Tsou <tom.tsou(a)ettus.com>
Date: Sat Jun 3 18:31:48 2017 -0700
siggen: Add osmo-siggen for GSM/EDGE test signal generation
* Adds 4 and 1 pulse Laurent GMSK modulators
* Adds NCO based modulator
* Adds synchronization and frequency burst generators
* Adds GPIO frame trigger on GPIO-0
* Tested on USRP B210 only
* Requires C++14 support
B210 GPIO Pin Map
J504
---------
fp_gpio<0> | 1 | 2 | fp_gpio<1>
---------
fp_gpio<2> | 3 | 4 | fp_gpio<3>
---------
fp_gpio<4> | 5 | 6 | fp_gpio<5>
---------
fp_gpio<6> | 7 | 8 | fp_gpio<7>
---------
gnd | 9 | 10| gnd
---------
Change-Id: I891725d7f0cfa97c79e64f978a60dc11a206195c
Signed-off-by: Tom Tsou <tom.tsou(a)ettus.com>
-----------------------------------------------------------------------
Summary of changes:
Transceiver52M/osmo-siggen.cpp | 139 ++++++++++++++++++++++-------------------
1 file changed, 73 insertions(+), 66 deletions(-)
hooks/post-receive
--
OpenBTS' transceiver retro-fit