From 18d49d694f1154b1fd2129791f491bb0a96fb432 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 2 Mar 2017 10:27:13 +0100 Subject: [PATCH] l1sap: Add frame-number to measurement indication struct The distribution of the channel measurement calculations over multiple timeslots (continous calculation) requires to keep track of the frame number in struct info_meas_ind_param Change-Id: I8c783b4a92ae2c3cc5d17936a146eb49d47eac37 --- include/osmocom/gsm/l1sap.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osmocom/gsm/l1sap.h b/include/osmocom/gsm/l1sap.h index e199efe12..183edbcbc 100644 --- a/include/osmocom/gsm/l1sap.h +++ b/include/osmocom/gsm/l1sap.h @@ -97,6 +97,7 @@ struct info_time_ind_param { /*! \brief for MEAS MPH-INFO.ind */ struct info_meas_ind_param { uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */ + uint32_t fn; /*!< \brief GSM Frame Number */ uint16_t ber10k; /*!< \brief BER in units of 0.01% */ int16_t ta_offs_qbits; /*!< \brief timing advance offset (in qbits) */ int16_t c_i_cb; /*!< \brief C/I ratio in 0.1 dB */