aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/gsm_data.h3
-rw-r--r--include/osmo-bts/phy_link.h9
2 files changed, 12 insertions, 0 deletions
diff --git a/include/osmo-bts/gsm_data.h b/include/osmo-bts/gsm_data.h
index f9e6ed13..c4953cbb 100644
--- a/include/osmo-bts/gsm_data.h
+++ b/include/osmo-bts/gsm_data.h
@@ -104,6 +104,9 @@ struct gsm_bts_role_bts {
struct llist_head queue; /* list of struct smscb_msg */
struct smscb_msg *cur_msg; /* current SMS-CB */
} smscb_state;
+
+ float min_qual_rach; /* minimum quality for RACH bursts */
+ float min_qual_norm; /* minimum quality for normal daata */
};
enum lchan_ciph_state {
diff --git a/include/osmo-bts/phy_link.h b/include/osmo-bts/phy_link.h
index 73d57749..e31971e6 100644
--- a/include/osmo-bts/phy_link.h
+++ b/include/osmo-bts/phy_link.h
@@ -82,7 +82,13 @@ struct phy_instance {
union {
struct {
+ /* configuration */
+ uint8_t clk_use_eeprom;
uint32_t dsp_trace_f;
+ int clk_cal;
+ uint8_t clk_src;
+ char *calib_path;
+
struct femtol1_hdl *hdl;
} sysmobts;
struct {
@@ -93,7 +99,10 @@ struct phy_instance {
uint32_t trx_id;
} octphy;
struct {
+ /* configuration */
uint32_t dsp_trace_f;
+ char *calib_path;
+
struct lc15l1_hdl *hdl;
} lc15;
} u;