Attention is currently required from: Hoernchen, laforge, fixeria.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-trx/+/30795 )
Change subject: configure.ac: check if LIBTRXCON_DIR (submodule) exists
......................................................................
Patch Set 3: Code-Review+2
(1 comment)
Patchset:
PS3:
> the check doesn't seem to work in a fresh clone: […]
ah, it is complaining with ./configure --with-mstrx as it should, nvm.
checking whether to enable building MS TRX... no
configure: error: osmocom-bb/src/host/trxcon does not exist
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/30795
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I06456c2087e160032f5bf8b36304477390f117d0
Gerrit-Change-Number: 30795
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 14 Feb 2023 08:56:51 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: Hoernchen, laforge, fixeria.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-trx/+/30795 )
Change subject: configure.ac: check if LIBTRXCON_DIR (submodule) exists
......................................................................
Patch Set 3: Code-Review-1
(2 comments)
Patchset:
PS3:
the check doesn't seem to work in a fresh clone:
$ git clone https://gitea.osmocom.org/cellular-infrastructure/osmo-trx/
$ cd osmo-trx
$ git fetch https://gerrit.osmocom.org/osmo-trx refs/changes/95/30795/3 && git checkout FETCH_HEAD
$ autoreconf -fi
$ ./configure # does NOT complain
File configure.ac:
https://gerrit.osmocom.org/c/osmo-trx/+/30795/comment/0aa7c07a_64252866
PS3, Line 218: AC_MSG_ERROR([$LIBTRXCON_DIR does not exist])
give a hint here, what git command the user should run to fetch the submodule?
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/30795
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I06456c2087e160032f5bf8b36304477390f117d0
Gerrit-Change-Number: 30795
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 14 Feb 2023 08:52:18 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
dexter has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-abis/+/31317 )
Change subject: trau_pcu_ericsson: change loglevel for CPS decoding
......................................................................
trau_pcu_ericsson: change loglevel for CPS decoding
The CPS field is inside the MAC block. When we are unable to decode the
CPS field a message is printed on loglevel NOTICE. However, it is pretty
normal that the CCU often receives noise (always when no MS transmits)
so we see this error very often. Lets change the level to DEBUG.
Change-Id: I1f5adbf9da6be4fec2d8c93e781c5df62ef62238
Related: OS#5198
---
M src/trau/trau_pcu_ericsson.c
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/src/trau/trau_pcu_ericsson.c b/src/trau/trau_pcu_ericsson.c
index 3a5a6d5..0b0477b 100644
--- a/src/trau/trau_pcu_ericsson.c
+++ b/src/trau/trau_pcu_ericsson.c
@@ -1708,13 +1708,13 @@
osmo_ubit2pbit_ext((pbit_t *) &ind->data, 0, trau_bits, 134, 40, 1);
cps = cps_from_mcs_block(ind->data, ind->cs_hdr, true);
if (cps < 0) {
- LOGP(DLINP, LOGL_NOTICE,
+ LOGP(DLINP, LOGL_DEBUG,
"CCU-DATA-IND-64: unable to read CPS from data block, bad data block received?\n");
break;
}
mcs = mcs_from_cps((uint8_t) cps, ind->cs_hdr);
if (mcs < 0) {
- LOGP(DLINP, LOGL_NOTICE,
+ LOGP(DLINP, LOGL_DEBUG,
"CCU-DATA-IND-64: unable to determine coding scheme (MCS) from CPS, bad data block received?\n");
break;
}
1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-abis/+/31317
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-abis
Gerrit-Branch: master
Gerrit-Change-Id: I1f5adbf9da6be4fec2d8c93e781c5df62ef62238
Gerrit-Change-Number: 31317
Gerrit-PatchSet: 2
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged