diff options
-rw-r--r-- | TODO-RELEASE | 3 | ||||
-rw-r--r-- | include/osmocom/gsm/l1sap.h | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE index ffdea4bd..472b3286 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -1,4 +1,5 @@ #library what description / commit summary line libosmogsm internal API update Internal API for GPRS cipher implementors updated to accommodate for arbitrary key lengths libosmocore change major external talloc dependency / internal talloc removal -libosmocore change major size of ph_data_param struct changed / Extend L1SAP PH-DATA with presence information
\ No newline at end of file +libosmocore change major size of ph_data_param struct changed / Extend L1SAP PH-DATA with presence information +libosmocore change major size of ph_data_param struct changed / Extend L1SAP PH-DATA with measurement information
\ No newline at end of file diff --git a/include/osmocom/gsm/l1sap.h b/include/osmocom/gsm/l1sap.h index 098e4f07..f0e9f6c9 100644 --- a/include/osmocom/gsm/l1sap.h +++ b/include/osmocom/gsm/l1sap.h @@ -70,6 +70,9 @@ struct ph_data_param { uint8_t chan_nr; /*!< \brief Channel Number (Like RSL) */ uint32_t fn; /*!< \brief GSM Frame Number */ int8_t rssi; /*!< \brief RSSI of receivedindication */ + uint16_t ber10k; /*!< \brief BER in units of 0.01% */ + int16_t ta_offs_qbits; /* !< \brief Burst TA Offset in quarter bits */ + int16_t lqual_cb; /* !< \brief Link quality in centiBel */ enum osmo_ph_pres_info_type pdch_presence_info; /*!< \brief Info regarding presence/validity of header and data parts */ }; |