Hi All,
We are trying to cross compile and test latest osmo-pcu, osmo-bts, openbsc, osmo-sgsn , and ggsn. One issue we see with latest sysmobts-mgr
(Commit ed494443cc1e9732b43ef99cccf187d17ac931ef) on Nuran 1.0 is as below.
- PA is off
- Signal is very low
- No signal on slave.
With sysmobts-mgr preloaded(older commit version) on board, the setup works fine.
Please help us in resolving this issue seen in master branch of osmo-bts latest commit.
Regards
Prasad
Hi,
as discussed at OsmoDevCon and the mails from last week. The following list of projects have moved to use gerrit for codereview:
* libosmocore.git
* libosmo-abis.git
* libosmo-netif.git
* libosmo-sccp.git
* libsmpp34.git
* openbsc.git
* osmo-bts.git
* osmo-iuh.git
* osmo-pcu.git
* cellmgr-ng.git
* osmo-sip-connector.git
I have created this[1] page with the minimum to set-up gerrit as git-remote, register, configure the account and then hopefully the most frequently used comments.
kind regards
holger
[1] http://osmocom.org/projects/cellular-infrastructure/wiki/Gerrit
Hi All,
We have noticed that the PCU sends invalid block number to L1 in DSP leading to unexpected message warning in DSP "GsmL1_PhDataReq(1) : Unexpected burst (Invalid blockNumber) [2!=1, SAPI 21-21]]".
After an investigation, we observe that the 'pcu_rx_rts_req' function in pcu_l1_if.cpp receives invalid block number from BTS.
Looking at the BTS side, the calculation of L1SAP_FN2PTCCHBLOCK defined as '#define L1SAP_FN2PTCCHBLOCK(fn) ((fn / 52) & 7)' does not seem to be valid for expected PTCCH block numbers B0, B1,B2,B3 defined in Table 6 in TS 05.02 version 8.11.0.
What do you think about re-define the calculation of the L1SAP_FN2PTCCHBLOCK?
Regards,
Minh-Quang Nguyen
Concepteur logiciel | Software designer GSM/Network
T. 418 914-7484 x2296 | 1 855 914-7484 | F. 418 914-9477
2150, Cyrille-Duquet, Québec (Québec) G1N 2G3 CANADA
minh-quang.nguyen(a)nutaq.com <mailto:minh-quang.nguyen@nutaq.com>
www.nutaq.com <http://www.nutaq.com/>
QUEBEC MONTREAL NEW YORK <http://www.nutaq.com/signature/nutaq_q_m_ny.jpg>
Facebook <http://www.facebook.com/pages/Nutaq-Innovation/351864938229900> Twitter <https://twitter.com/NutaqInnovation> LinkedIn <http://www.linkedin.com/company/Nutaq> YouTube <http://www.youtube.com/NutaqInnovation>
This series of patches supports Incremental redundency for EGPRS DL case.
These patches have been integration tested on Nuran 1.0 for EGPRS MCS 9 support
in DL. And in UL only MCS4 has been tested. The EGPRS testing has been done with
Browsing and Ping in DL with larger packet sizes(1500).
Aravind Sirsikar (4):
Add data structure for MCS change in Retx
Add Accessor functions for MCS change in Retx
Modify DL tbf flow for MCS change in Retx
Add test cases to support MCS change during Retx
src/gprs_coding_scheme.cpp | 36 ++++
src/gprs_coding_scheme.h | 27 ++-
src/gprs_ms.cpp | 5 +
src/gprs_ms.h | 1 +
src/rlc.h | 10 ++
src/tbf_dl.cpp | 41 +++--
tests/tbf/TbfTest.cpp | 224 +++++++++++++++++++++++++
tests/tbf/TbfTest.err | 397 ++++++++++++++++++++++++++++++++++++++++++++
tests/tbf/TbfTest.ok | 9 +
9 files changed, 737 insertions(+), 13 deletions(-)
--
1.7.9.5
Hi Harald,
Can you please let us know the commit version for osmo-pcu which has been verified for EGPRS functionality on Nuran 1.0 hardware.
We have been trying the latest commit 1aa75273025b033d17c1068369a7ba145d5c9f06 which does not work( no uplink data received yet).
Can you provide details of the hardware in which EGPRS functionality has been successfully verified.
Thanks,
Aravind Sirsikar
From: Max <msuraev(a)sysmocom.de>
Define automake variable for configure flags to be used while running
'make distcheck'. This should prevent additional vty tests from running
in readonly distcheck environment. Note: user can still break the build
by overriding this with DISTCHECK_CONFIGURE_FLAGS variable.
---
src/Makefile.am | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Makefile.am b/src/Makefile.am
index 6428bef..487ef1d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -19,6 +19,7 @@
#
AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGB_CFLAGS) $(LIBOSMOGSM_CFLAGS)
+AM_DISTCHECK_CONFIGURE_FLAGS="--enable-sysmocom-dsp=no"
if ENABLE_SYSMODSP
AM_CPPFLAGS += -DENABLE_SYSMODSP
--
2.8.1