Change in ...osmo-trx[master]: Transceiver: refactor: gather uplink burst parameters in struct

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 Jun 28 15:27:18 UTC 2019


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


Change subject: Transceiver: refactor: gather uplink burst parameters in struct
......................................................................

Transceiver: refactor: gather uplink burst parameters in struct

A new struct trx_ul_burst_ind is introduced, which will handle
information filled by lower layers upon decoding of uplink bursts.

Methods pullRadioVector() and logRxBurst() are adapted to use that
struct. This way it's easier to understand in/out parameters and it's
also easier to add further parameters to be filled in in the future.

Related: OS#4006
Change-Id: I7e590fb1c0901de627e782f183251c20f4f68d48
---
M Transceiver52M/Transceiver.cpp
M Transceiver52M/Transceiver.h
2 files changed, 48 insertions(+), 53 deletions(-)



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

diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index de4b622..08b9e4f 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -551,27 +551,24 @@
  * Pull bursts from the FIFO and handle according to the slot
  * and burst correlation type. Equalzation is currently disabled.
  */
-SoftVector *Transceiver::pullRadioVector(GSM::Time &wTime, double &RSSI, bool &isRssiValid,
-                                         double &timingOffset, double &noise,
-                                         size_t chan)
+bool Transceiver::pullRadioVector(size_t chan, struct trx_ul_burst_ind *bi)
 {
   int rc;
   complex amp;
   float toa, max = -1.0, avg = 0.0;
   int max_i = -1;
   signalVector *burst;
-  SoftVector *bits = NULL;
   TransceiverState *state = &mStates[chan];
-  isRssiValid = false;
+  bi->rssi_valid = false;
 
   /* Blocking FIFO read */
   radioVector *radio_burst = mReceiveFIFO[chan]->read();
   if (!radio_burst)
-    return NULL;
+    return false;
 
   /* Set time and determine correlation type */
-  GSM::Time time = radio_burst->getTime();
-  CorrType type = expectedCorrType(time, chan);
+  bi->burstTime = radio_burst->getTime();
+  CorrType type = expectedCorrType(bi->burstTime, chan);
 
   /* Enable 8-PSK burst detection if EDGE is enabled */
   if (mEdge && (type == TSC))
@@ -580,14 +577,14 @@
   /* Debug: dump bursts to disk */
   /* bits 0-7  - chan 0 timeslots
    * bits 8-15 - chan 1 timeslots */
-  if (mWriteBurstToDiskMask & ((1<<time.TN()) << (8*chan)))
+  if (mWriteBurstToDiskMask & ((1<<bi->burstTime.TN()) << (8*chan)))
     writeToFile(radio_burst, chan);
 
   /* No processing if the timeslot is off.
    * Not even power level or noise calculation. */
   if (type == OFF) {
     delete radio_burst;
-    return NULL;
+    return false;
   }
 
   /* Select the diversity channel with highest energy */
@@ -603,30 +600,29 @@
   if (max_i < 0) {
     LOG(ALERT) << "Received empty burst";
     delete radio_burst;
-    return NULL;
+    return false;
   }
 
   /* Average noise on diversity paths and update global levels */
   burst = radio_burst->getVector(max_i);
   avg = sqrt(avg / radio_burst->chans());
 
-  wTime = time;
-  RSSI = 20.0 * log10(rxFullScale / avg);
+  bi->rssi = 20.0 * log10(rxFullScale / avg);
 
   /* RSSI estimation are valid */
-  isRssiValid = true;
+  bi->rssi_valid = true;
 
   if (type == IDLE) {
     /* Update noise levels */
     state->mNoises.insert(avg);
     state->mNoiseLev = state->mNoises.avg();
-    noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
+    bi->noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
 
     delete radio_burst;
-    return NULL;
+    return false;
   } else {
     /* Do not update noise levels */
-    noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
+    bi->noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
   }
 
   unsigned max_toa = (type == RACH || type == EXT_RACH) ?
@@ -645,15 +641,14 @@
     }
 
     delete radio_burst;
-    return NULL;
+    return false;
   }
 
-  timingOffset = toa;
-
-  bits = demodAnyBurst(*burst, mSPSRx, amp, toa, type);
+  bi->toa = toa;
+  bi->rxBurst = demodAnyBurst(*burst, mSPSRx, amp, toa, type);
 
   delete radio_burst;
-  return bits;
+  return true;
 }
 
 void Transceiver::reset()
@@ -909,63 +904,57 @@
   }
 }
 
-void Transceiver::logRxBurst(size_t chan, SoftVector *burst, GSM::Time time, double dbm,
-                             double rssi, double noise, double toa)
+void Transceiver::logRxBurst(size_t chan, struct trx_ul_burst_ind *bi, double dbm)
 {
   LOG(DEBUG) << std::fixed << std::right
     << " chan: "   << chan
-    << " time: "   << time
-    << " RSSI: "   << std::setw(5) << std::setprecision(1) << rssi
+    << " time: "   << bi->burstTime
+    << " RSSI: "   << std::setw(5) << std::setprecision(1) << bi->rssi
                    << "dBFS/" << std::setw(6) << -dbm << "dBm"
-    << " noise: "  << std::setw(5) << std::setprecision(1) << noise
-                   << "dBFS/" << std::setw(6) << -(noise + rssiOffset) << "dBm"
-    << " TOA: "    << std::setw(5) << std::setprecision(2) << toa
-    << " bits: "   << *burst;
+    << " noise: "  << std::setw(5) << std::setprecision(1) << bi->noise
+                   << "dBFS/" << std::setw(6) << -(bi->noise + rssiOffset) << "dBm"
+    << " TOA: "    << std::setw(5) << std::setprecision(2) << bi->toa
+    << " bits: "   << *(bi->rxBurst);
 }
 
 void Transceiver::driveReceiveFIFO(size_t chan)
 {
-  SoftVector *rxBurst = NULL;
-  double RSSI; // in dBFS
   double dBm;  // in dBm
-  double TOA;  // in symbols
   int TOAint;  // in 1/256 symbols
-  double noise; // noise level in dBFS
-  GSM::Time burstTime;
-  bool isRssiValid; // are RSSI, noise and burstTime valid
   unsigned nbits = gSlotLen;
 
-  rxBurst = pullRadioVector(burstTime, RSSI, isRssiValid, TOA, noise, chan);
-  if (!rxBurst)
-    return;
+  struct trx_ul_burst_ind bi;
+
+  if (!pullRadioVector(chan, &bi))
+        return;
 
   // Convert -1..+1 soft bits to 0..1 soft bits
-  vectorSlicer(rxBurst);
+  vectorSlicer(bi.rxBurst);
 
   /*
    * EDGE demodulator returns 444 (148 * 3) bits
    */
-  if (rxBurst->size() == gSlotLen * 3)
+  if (bi.rxBurst->size() == gSlotLen * 3)
     nbits = gSlotLen * 3;
 
-  dBm = RSSI + rssiOffset;
-  logRxBurst(chan, rxBurst, burstTime, dBm, RSSI, noise, TOA);
+  dBm = bi.rssi + rssiOffset;
+  logRxBurst(chan, &bi, dBm);
 
-  TOAint = (int) (TOA * 256.0 + 0.5); // round to closest integer
+  TOAint = (int) (bi.toa * 256.0 + 0.5); // round to closest integer
 
   char burstString[nbits + 10];
   struct trxd_hdr_v0* pkt = (struct trxd_hdr_v0*)burstString;
-  pkt->common.tn = burstTime.TN();
-  osmo_store32be(burstTime.FN(), &pkt->common.fn);
+  pkt->common.tn = bi.burstTime.TN();
+  osmo_store32be(bi.burstTime.FN(), &pkt->common.fn);
   pkt->v0.rssi = dBm;
   osmo_store16be(TOAint, &pkt->v0.toa);
-  SoftVector::iterator burstItr = rxBurst->begin();
+  SoftVector::iterator burstItr = bi.rxBurst->begin();
 
   for (unsigned i = 0; i < nbits; i++)
     pkt->soft_bits[i] = (char) round((*burstItr++) * 255.0);
 
   pkt->soft_bits[nbits] = '\0';
-  delete rxBurst;
+  delete bi.rxBurst;
 
   mDataSockets[chan]->write(burstString, sizeof(struct trxd_hdr_v0) + nbits + 1);
 }
diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h
index ceb8c4a..5ef6bbb 100644
--- a/Transceiver52M/Transceiver.h
+++ b/Transceiver52M/Transceiver.h
@@ -35,6 +35,15 @@
 #include "config_defs.h"
 }
 
+struct trx_ul_burst_ind {
+        SoftVector *rxBurst;
+        GSM::Time burstTime;
+        double rssi; // in dBFS
+        double toa;  // in symbols
+        double noise; // noise level in dBFS
+        bool rssi_valid; // are RSSI, noise and burstTime valid
+};
+
 class Transceiver;
 
 /** Channel descriptor for transceiver object and channel number pair */
@@ -191,9 +200,7 @@
   void pushRadioVector(GSM::Time &nowTime);
 
   /** Pull and demodulate a burst from the receive FIFO */
-  SoftVector *pullRadioVector(GSM::Time &wTime, double &RSSI, bool &isRssiValid,
-                              double &timingOffset, double &noise,
-                              size_t chan = 0);
+  bool pullRadioVector(size_t chan, struct trx_ul_burst_ind *ind);
 
   /** Set modulus for specific timeslot */
   void setModulus(size_t timeslot, size_t chan);
@@ -264,8 +271,7 @@
   /** set priority on current thread */
   void setPriority(float prio = 0.5) { mRadioInterface->setPriority(prio); }
 
-  void logRxBurst(size_t chan, SoftVector *burst, GSM::Time time, double dbm,
-                  double rssi, double noise, double toa);
+  void logRxBurst(size_t chan, struct trx_ul_burst_ind *bi, double dbm);
 };
 
 void *RxUpperLoopAdapter(TransceiverChannel *);

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

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I7e590fb1c0901de627e782f183251c20f4f68d48
Gerrit-Change-Number: 14630
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/20190628/b74cbd7a/attachment.htm>


More information about the gerrit-log mailing list