aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-19 20:04:57 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-30 21:24:10 +0100
commit111614a9942195f6261be5cf8854d1f6fdbe1479 (patch)
tree627ebecacbedd290acaf7278a3b21eb139e07cfc /src/bts.h
parentd6ef5345e570cf2a725e2d73bb0146b72a063f30 (diff)
ta: Create TimingAdvance class and make it belong to the BTS
This allows us to easily flush the state in case a PCU/BTS connection is lost.
Diffstat (limited to 'src/bts.h')
-rw-r--r--src/bts.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bts.h b/src/bts.h
index 0e8adf7e..3a264f76 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -28,6 +28,7 @@ extern "C" {
}
#include "poll_controller.h"
+#include "ta.h"
#endif
#include <stdint.h>
@@ -122,6 +123,7 @@ public:
static BTS* main_bts();
struct gprs_rlcmac_bts *bts_data();
+ TimingAdvance *timing_advance();
/** TODO: change the number to unsigned */
void set_current_frame_number(int frame_number);
@@ -134,6 +136,7 @@ private:
int m_cur_fn;
struct gprs_rlcmac_bts m_bts;
PollController m_pollController;
+ TimingAdvance m_ta;
private:
/* disable copying to avoid slicing */
@@ -145,6 +148,11 @@ inline int BTS::current_frame_number() const
{
return m_cur_fn;
}
+
+inline TimingAdvance *BTS::timing_advance()
+{
+ return &m_ta;
+}
#endif
#ifdef __cplusplus