aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/bts.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmo-bts/bts.h')
-rw-r--r--include/osmo-bts/bts.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/osmo-bts/bts.h b/include/osmo-bts/bts.h
index 583c1eb1..e2020350 100644
--- a/include/osmo-bts/bts.h
+++ b/include/osmo-bts/bts.h
@@ -3,6 +3,12 @@
#include <osmo-bts/gsm_data.h>
+enum bts_global_status {
+ BTS_STATUS_RF_ACTIVE,
+ BTS_STATUS_RF_MUTE,
+ BTS_STATUS_LAST,
+};
+
extern void *tall_bts_ctx;
int bts_init(struct gsm_bts *bts);
@@ -27,5 +33,7 @@ int lchan_init_lapdm(struct gsm_lchan *lchan);
void load_timer_start(struct gsm_bts *bts);
+void bts_update_status(enum bts_global_status which, int on);
+
#endif /* _BTS_H */