aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-08-24 15:35:54 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-24 19:06:48 +0000
commitaa11997480822af0a583ac3c7c3fca1dc4bbe994 (patch)
tree1af4bc75664d14d65ecb72b186aa18f1358a0799 /include
parent9a30b7781310b81555b216d32b172b6bb9c9d7e4 (diff)
osmo-bts-trx: remove global variables from loops
* move TA related globals into phy_link * move power loop related globals into phy_link * prefix corresponding vty vars with osmotrx Change-Id: I01d7c1abad67e51b886a4ecf2de072929d67da27 Related: OS#1848
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/phy_link.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/osmo-bts/phy_link.h b/include/osmo-bts/phy_link.h
index 7011622e..0ffc58e6 100644
--- a/include/osmo-bts/phy_link.h
+++ b/include/osmo-bts/phy_link.h
@@ -44,7 +44,9 @@ struct phy_link {
uint16_t base_port_local;
uint16_t base_port_remote;
struct osmo_fd trx_ofd_clk;
-
+ bool trx_ta_loop;
+ bool trx_ms_power_loop;
+ int8_t trx_target_rssi;
uint32_t clock_advance;
uint32_t rts_advance;
bool use_legacy_setbsic;