Change in osmo-trx[master]: Transceiver: Restrict conditions where FN gaps are detected

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/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Fri Jul 17 12:14:04 UTC 2020


pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/19304 )


Change subject: Transceiver: Restrict conditions where FN gaps are detected
......................................................................

Transceiver: Restrict conditions where FN gaps are detected

In pushRadioVector, like we did for driveTxPriorityQueue already, gaps
are possible in any channel for TRX!=0, since TRX0 is the only one
expected to be always transmitting.

Since we always need to transmit there, it makes no sense to check for
channel being not NONE.

Change-Id: I3b4b85b9100f69dfa113c54a4357120bd11ec86f
---
M Transceiver52M/Transceiver.cpp
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/04/19304/1

diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index d750218..3be7746 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -468,7 +468,7 @@
     } else {
       modFN = nowTime.FN() % state->fillerModulus[TN];
       bursts[i] = state->fillerTable[modFN][TN];
-      if (state->chanType[TN] != NONE) {
+      if (i == 0 && state->mFiller == FILLER_ZERO) {
         LOGCHAN(i, DTRXDDL, NOTICE) << "No Tx burst available for " << nowTime
                                     << ", retrans=" << state->mRetrans;
         state->ctrs.tx_unavailable_bursts++;

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19304
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I3b4b85b9100f69dfa113c54a4357120bd11ec86f
Gerrit-Change-Number: 19304
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200717/1e496cdc/attachment.htm>


More information about the gerrit-log mailing list