aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-07 23:55:27 +0600
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-08 16:54:20 +0600
commitee5eb616946ed195cda8f9a03e14ea5155836ee4 (patch)
treed5d65a51df76879c44bbd228846c93e1774cdf57 /include
parent605cb85afd9b72d6e1ba9dcc0a136dae58990052 (diff)
l1sap: check if BTS model supports interference reporting
Currently, only osmo-bts-trx is capable of reporting the interference levels to L1SAP. Thus it does not make sense to trigger the averaging logic and send empty reports over the A-bis/RSL and the PCUIF. Change-Id: Ic17eb46bdca3c33ac4d6e560a093b635b75424a5 Related: SYS#5313
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/bts.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmo-bts/bts.h b/include/osmo-bts/bts.h
index fab7f96d..4683758b 100644
--- a/include/osmo-bts/bts.h
+++ b/include/osmo-bts/bts.h
@@ -62,6 +62,8 @@ const char *btsvariant2str(enum gsm_bts_type_variant v);
/* Whether the BTS model requires RadioCarrier MO to be in Enabled state
* (OPSTARTed) before OPSTARTing the RadioChannel MOs. See OS#5157 */
#define BTS_INTERNAL_FLAG_NM_RCHANNEL_DEPENDS_RCARRIER (1 << 2)
+/* Whether the BTS model reports interference measurements to L1SAP. */
+#define BTS_INTERNAL_FLAG_INTERF_MEAS (1 << 3)
/* BTS implementation flags (internal use, not exposed via OML) */
#define bts_internal_flag_get(bts, flag) \