aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/Transceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/Transceiver.h')
-rw-r--r--Transceiver52M/Transceiver.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h
index 30b2fd3..51b6e24 100644
--- a/Transceiver52M/Transceiver.h
+++ b/Transceiver52M/Transceiver.h
@@ -76,6 +76,10 @@ struct TransceiverState {
float SNRestimate[8];
float chanRespOffset[8];
complex chanRespAmplitude[8];
+
+ /* Received noise energy levels */
+ float mNoiseLev;
+ noiseVector mNoises;
};
/** The Transceiver class, responsible for physical layer of basestation */
@@ -114,9 +118,6 @@ private:
IDLE ///< timeslot is an idle (or dummy) burst
} CorrType;
- float mNoiseLev; ///< Average noise level
- noiseVector mNoises; ///< Vector holding running noise measurements
-
/** modulate and add a burst to the transmit queue */
void addRadioVector(size_t chan, BitVector &bits,
int RSSI, GSM::Time &wTime);