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 "A/B/C Netz".
The branch, master has been updated
via e9583d56615256f3d365aace1f02ae99361111c7 (commit)
via aeb31a7a34fc2accd0c840d7d8e91bc4a946c7d9 (commit)
via ca6d70566c339eb24aca8af29f8000008e53184a (commit)
via e8a3306eee9eadd8d8d2547ed4e6c012a155109b (commit)
via 87a21a285a121b4309b57a3d7e066124b7f26270 (commit)
via 5c33b8824b77ca7d13a7e25bea56a9a3846790a5 (commit)
via ee3fbeb03b503bedcc1f61791e678eb9998c4d3e (commit)
from 7cbebaeb75211bbeb4d3f3b7bfe59ea6bce12aa1 (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-analog/commit/?id=e9583d56615256f3d365aace1…
commit e9583d56615256f3d365aace1f02ae99361111c7
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sat Nov 4 17:08:57 2017 +0100
R2000: Make recall work when call is directly answered by call_up_setup
It is not recommended to use recall function with built-in MNCC (auto-answer),
because the phone is not fast enough to switch back to call control channel
and so it misses the first paging. But anyway it works.
Also the channel layout is checked for having traffic and control channel.
http://cgit.osmocom.org/osmocom-analog/commit/?id=aeb31a7a34fc2accd0c840d7d…
commit aeb31a7a34fc2accd0c840d7d8e91bc4a946c7d9
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Oct 30 08:00:47 2017 +0100
A-Netz: Number of operator can be defined now
Since A-Netz does not allow automatic dialing, the call is forwarded
to an operator. Use -O <number> to change the default operator's number.
http://cgit.osmocom.org/osmocom-analog/commit/?id=ca6d70566c339eb24aca8af29…
commit ca6d70566c339eb24aca8af29f8000008e53184a
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Oct 30 07:59:47 2017 +0100
Fixup displaying measurements (array overflow)
http://cgit.osmocom.org/osmocom-analog/commit/?id=e8a3306eee9eadd8d8d2547ed…
commit e8a3306eee9eadd8d8d2547ed4e6c012a155109b
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sun Oct 29 07:58:20 2017 +0100
Add option to cross-connect calls; Calls between mobiles are now possible
Use -x to enable call cross-connect. No MNCC socket, no call device must
be specified!
Be sure to have at least one control channel and two voice channels.
Alternatively you can use one combined control/voice channel and one
voice channel.
http://cgit.osmocom.org/osmocom-analog/commit/?id=87a21a285a121b4309b57a3d7…
commit 87a21a285a121b4309b57a3d7e066124b7f26270
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sat Oct 28 19:01:27 2017 +0200
NMT: Assign traffic channel for outgoing and incoming calls
This way the control channel stays available for other (idle) phones.
No more loss of coverage for other phones, when a call to a mobile is
made.
It is still possible to define a combined control+traffic channel.
(e.g. for single channel setup)
http://cgit.osmocom.org/osmocom-analog/commit/?id=5c33b8824b77ca7d13a7e25be…
commit 5c33b8824b77ca7d13a7e25bea56a9a3846790a5
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sat Oct 28 08:34:50 2017 +0200
AMPS/TACS: Fixing release towards mobile station on FVC
We must continuously send release frames until Signaling Tone changes,
so we know that the phone has received the release.
http://cgit.osmocom.org/osmocom-analog/commit/?id=ee3fbeb03b503bedcc1f61791…
commit ee3fbeb03b503bedcc1f61791e678eb9998c4d3e
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sat Oct 28 07:11:40 2017 +0200
Split call control from built-in call console by using MNCC layer
-----------------------------------------------------------------------
Summary of changes:
docs/software.html | 61 ++-
src/amps/amps.c | 62 +--
src/amps/dsp.c | 2 +-
src/amps/transaction.c | 2 +-
src/anetz/anetz.c | 30 +-
src/anetz/anetz.h | 3 +-
src/anetz/dsp.c | 2 +-
src/anetz/main.c | 21 +-
src/bnetz/bnetz.c | 28 +-
src/bnetz/dsp.c | 2 +-
src/cnetz/cnetz.c | 44 +-
src/cnetz/dsp.c | 2 +-
src/cnetz/transaction.c | 2 +-
src/common/Makefile.am | 2 +
src/common/call.c | 942 ++++++++++----------------------------
src/common/call.h | 40 +-
src/common/cause.h | 3 +
src/common/debug.c | 4 +-
src/common/display_measurements.c | 6 +-
src/common/main_mobile.c | 82 +++-
src/common/mncc_console.c | 473 +++++++++++++++++++
src/common/mncc_console.h | 10 +
src/common/mncc_cross.c | 240 ++++++++++
src/common/mncc_cross.h | 5 +
src/common/mncc_sock.c | 31 +-
src/common/mncc_sock.h | 7 +-
src/nmt/dsp.c | 2 +-
src/nmt/main.c | 9 +-
src/nmt/nmt.c | 127 +++--
src/r2000/dsp.c | 2 +-
src/r2000/r2000.c | 67 ++-
src/test/dummy.c | 10 +-
32 files changed, 1381 insertions(+), 942 deletions(-)
create mode 100644 src/common/mncc_console.c
create mode 100644 src/common/mncc_console.h
create mode 100644 src/common/mncc_cross.c
create mode 100644 src/common/mncc_cross.h
hooks/post-receive
--
A/B/C Netz