osmocom-analog.git branch master updated. 999b6a2b4d8b5b7409b215a5cca2928fa67cebc3

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Wed Aug 9 15:28:18 UTC 2017


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  999b6a2b4d8b5b7409b215a5cca2928fa67cebc3 (commit)
       via  534411d660ad2b9567059e371cf30e71d4e4e848 (commit)
       via  ffd3b848e1c2ca5e8449731062acd84f9d7d664b (commit)
       via  8ce3ff455d83c692f240969a8c9f2d61ba4533e3 (commit)
      from  f5e4058c6f2bfeccdb4054c1e9fb7263cea95935 (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=999b6a2b4d8b5b7409b215a5cca2928fa67cebc3

commit 999b6a2b4d8b5b7409b215a5cca2928fa67cebc3
Author: Andreas Eversberg <jolly at eversberg.eu>
Date:   Wed Aug 9 16:59:10 2017 +0200

    UHD: Make frequency settings more tollerant (+-100 Hz are accepted)

http://cgit.osmocom.org/osmocom-analog/commit/?id=534411d660ad2b9567059e371cf30e71d4e4e848

commit 534411d660ad2b9567059e371cf30e71d4e4e848
Author: Andreas Eversberg <jolly at eversberg.eu>
Date:   Sat Aug 5 10:41:23 2017 +0200

    New common FSK implementation, replaces all individual implementations

http://cgit.osmocom.org/osmocom-analog/commit/?id=ffd3b848e1c2ca5e8449731062acd84f9d7d664b

commit ffd3b848e1c2ca5e8449731062acd84f9d7d664b
Author: Andreas Eversberg <jolly at eversberg.eu>
Date:   Sat Jun 10 15:30:20 2017 +0200

    Implementation of "Radiocom 2000", the analog French mobile network

http://cgit.osmocom.org/osmocom-analog/commit/?id=8ce3ff455d83c692f240969a8c9f2d61ba4533e3

commit 8ce3ff455d83c692f240969a8c9f2d61ba4533e3
Author: Andreas Eversberg <jolly at eversberg.eu>
Date:   Sun Aug 6 11:30:39 2017 +0200

    Add incoming answer to call control, also allow to send recall tone

-----------------------------------------------------------------------

Summary of changes:
 .gitignore                     |    1 +
 README                         |    8 +-
 configure.ac                   |    1 +
 docs/index.html                |    1 +
 docs/radiocom2000.html         |   39 +
 src/Makefile.am                |    2 +-
 src/amps/amps.c                |    4 +
 src/anetz/anetz.c              |    4 +
 src/bnetz/bnetz.c              |   14 +-
 src/bnetz/bnetz.h              |   26 +-
 src/bnetz/dsp.c                |  338 +++------
 src/cnetz/cnetz.c              |    4 +
 src/common/Makefile.am         |    2 +-
 src/common/call.c              |   22 +
 src/common/call.h              |    2 +
 src/common/debug.c             |    1 +
 src/common/debug.h             |   21 +-
 src/common/ffsk.c              |  256 -------
 src/common/ffsk.h              |   27 -
 src/common/fm_modulation.c     |  123 +++-
 src/common/fm_modulation.h     |   12 +-
 src/common/fsk.c               |  293 ++++++++
 src/common/fsk.h               |   31 +
 src/common/sdr.c               |   32 +-
 src/common/uhd.c               |    4 +-
 src/nmt/dms.c                  |   74 +-
 src/nmt/dms.h                  |   13 +-
 src/nmt/dsp.c                  |  132 ++--
 src/nmt/main.c                 |    3 -
 src/nmt/nmt.c                  |    6 +-
 src/nmt/nmt.h                  |   12 +-
 src/{nmt => r2000}/Makefile.am |   16 +-
 src/r2000/dsp.c                |  386 ++++++++++
 src/r2000/dsp.h                |    6 +
 src/r2000/frame.c              |  573 +++++++++++++++
 src/r2000/frame.h              |   33 +
 src/r2000/image.c              |   84 +++
 src/{amps => r2000}/image.h    |    0
 src/r2000/main.c               |  397 ++++++++++
 src/r2000/r2000.c              | 1589 ++++++++++++++++++++++++++++++++++++++++
 src/r2000/r2000.h              |  124 ++++
 src/r2000/tones.c              |   68 ++
 src/r2000/tones.h              |    3 +
 src/test/dummy.c               |    1 +
 src/test/test_dms.c            |  129 ++--
 src/test/test_performance.c    |    6 +-
 46 files changed, 4093 insertions(+), 830 deletions(-)
 create mode 100644 docs/radiocom2000.html
 delete mode 100644 src/common/ffsk.c
 delete mode 100644 src/common/ffsk.h
 create mode 100644 src/common/fsk.c
 create mode 100644 src/common/fsk.h
 copy src/{nmt => r2000}/Makefile.am (67%)
 create mode 100644 src/r2000/dsp.c
 create mode 100644 src/r2000/dsp.h
 create mode 100644 src/r2000/frame.c
 create mode 100644 src/r2000/frame.h
 create mode 100644 src/r2000/image.c
 copy src/{amps => r2000}/image.h (100%)
 create mode 100644 src/r2000/main.c
 create mode 100644 src/r2000/r2000.c
 create mode 100644 src/r2000/r2000.h
 create mode 100644 src/r2000/tones.c
 create mode 100644 src/r2000/tones.h


hooks/post-receive
-- 
A/B/C Netz



More information about the osmocom-commitlog mailing list