From ee5eb616946ed195cda8f9a03e14ea5155836ee4 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 7 Oct 2021 23:55:27 +0600 Subject: 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 --- include/osmo-bts/bts.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') 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) \ -- cgit v1.2.3