osmo-bts.git branch ttsou/egprs updated. 0.4.0-229-ga95a0fe

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
Tue Jul 26 05:27:57 UTC 2016


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, ttsou/egprs has been updated
  discards  7a19ec22c5700f578fef9d583e18e90eff03b160 (commit)
  discards  de2e5798e23e023ad15c6179ed2b102f44b8db4b (commit)
  discards  2d1cf4ed327e10c9f6761a99b39124e0676faaa3 (commit)
       via  a95a0fe76d2b0fc4100cd7f2627b7f38a336326e (commit)
       via  0750f3de4aa12e4406a70c76a5e18f0d9678b1c3 (commit)
       via  6e656748b7fa8b7e00d610eaaf4de84113b67a0b (commit)
       via  73cb583e5147a267a370c576e8ac77507de6d0d7 (commit)
       via  c9582ac2d7366233ab64f2868f17071c2ddadf32 (commit)
       via  c57304b65e0789167f992ffc9b4037c871569880 (commit)
       via  9ab51522dacb56db832340d66f22f2e3c59e89c7 (commit)
       via  8e22ac3d1a48b5982ffa3be3dd189071a064e7d9 (commit)
       via  ee2299c8fa4fe6721bfe99b7bf6178c123151733 (commit)
       via  95dec9ff4ac3a4f4622152171aa77492c6b70836 (commit)
       via  334df9441a44de00c0dd3f66e73ac6fae28098fb (commit)
       via  290c7d954faa9410c4c6740787e8e3bbf1c92d6c (commit)
       via  7f1365c05e94782f4c8e466aa1795e3e09acd330 (commit)
       via  2479ef4133b274df9abe179320ee9b11cb572ba4 (commit)
       via  ae65ccd0b2fe22e3c6ab5c855ff948f93ada0eed (commit)
       via  8a2f026cf060e007eab073920313e17bb534a3a9 (commit)
       via  4355021b8afdad989b285fa823b6cbf2bb175c45 (commit)
       via  2ed03cd640fa13adb1d408f300b4a326c2ecbdff (commit)
       via  cff0d44e53bce69a9c8831925d1489c4024ccb1c (commit)
       via  b8f5f4e176c5402ec529225864313f0787502049 (commit)
       via  b151301c6c91f8ecc02aa18ee746b02cf61f6fee (commit)
       via  1c1b0e843d50b3bc6d82bb78e09242a4d0b7b21f (commit)
       via  e3edc17426139e16da869ac62f80ce45bd452935 (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 (7a19ec22c5700f578fef9d583e18e90eff03b160)
            \
             N -- N -- N (a95a0fe76d2b0fc4100cd7f2627b7f38a336326e)

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=a95a0fe76d2b0fc4100cd7f2627b7f38a336326e

commit a95a0fe76d2b0fc4100cd7f2627b7f38a336326e
Author: Tom Tsou <tom.tsou at ettus.com>
Date:   Fri Jul 1 00:10:31 2016 -0700

    trx: Enable EGPRS handling through burst lengths
    
    Existing interfaces are coded with the implicit expectation of using
    a burst sequence length of 148, which is constant with GSM and GPRS.
    That changes with EGPRS, where the burst length may be 444 due to
    the use of 8-PSK instead of GMSK modulation.
    
    Setup the interface to accept and return a length value with the
    burst sequence. This allows 444 length bit vectors to/from the
    EGPRS decoder/encoder. Length is explicitly used as a identifier for
    8-PSK vs. GMSK modulated sequences.
    
    Change-Id: I90b46b46b11b6ce280e7f8232d5a2fccec2d4f18
    Signed-off-by: Tom Tsou <tom.tsou at ettus.com>

http://cgit.osmocom.org/osmo-bts/commit/?id=0750f3de4aa12e4406a70c76a5e18f0d9678b1c3

commit 0750f3de4aa12e4406a70c76a5e18f0d9678b1c3
Author: Tom Tsou <tom.tsou at ettus.com>
Date:   Wed Jul 6 13:29:55 2016 -0700

    trx: Add EGPRS coding and decoding procedures
    
    Handles uplink decoding and downlink encoding procedures for MCS 1-9.
    Includes Type 1, 2, and 3 headers and tables from 3GPP TS 44.060 in
    order to independently recover coding and puncturing scheme (CPS)
    parameters for each coded message.
    
    Change-Id: I0f059ae34c6f36179553cbc972f8becf8179eb55
    Signed-off-by: Tom Tsou <tom.tsou at ettus.com>

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

Summary of changes:
 .gitignore                                |   2 -
 doc/dyn_pdch.msc                          |  39 ---
 doc/msc-README                            |   2 -
 include/osmo-bts/gsm_data.h               |   2 +
 include/osmo-bts/rsl.h                    |   8 +-
 include/osmo-bts/scheduler.h              |   4 +-
 src/common/l1sap.c                        |  13 +-
 src/common/msg_utils.c                    |   8 +-
 src/common/oml.c                          |  16 +-
 src/common/pcu_sock.c                     |   4 +-
 src/common/rsl.c                          | 129 ++++------
 src/osmo-bts-litecell15/oml.c             |   4 +-
 src/osmo-bts-sysmo/misc/sysmobts_eeprom.h |   2 +-
 src/osmo-bts-sysmo/misc/sysmobts_par.c    |   6 +
 src/osmo-bts-sysmo/oml.c                  |  11 +-
 src/osmo-bts-trx/Makefile.am              |   4 +-
 src/osmo-bts-trx/gsm0460.c                |  73 ------
 src/osmo-bts-trx/gsm0460.h                | 172 -------------
 src/osmo-bts-trx/gsm0503_coding.c         | 409 ++++++++++++++----------------
 src/osmo-bts-trx/gsm0503_coding.h         |  26 +-
 src/osmo-bts-trx/l1_if.c                  |  13 +-
 src/osmo-bts-trx/scheduler_trx.c          |   8 +-
 tests/bursts/Makefile.am                  |   3 +-
 23 files changed, 314 insertions(+), 644 deletions(-)
 delete mode 100644 doc/dyn_pdch.msc
 delete mode 100644 doc/msc-README
 delete mode 100644 src/osmo-bts-trx/gsm0460.c
 delete mode 100644 src/osmo-bts-trx/gsm0460.h


hooks/post-receive
-- 
Osmocom BTS-side code (Abis, scheduling, ...)



More information about the osmocom-commitlog mailing list