aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/meas_rep.h
AgeCommit message (Collapse)AuthorFilesLines
2014-08-25port over to libosmocore include/osmocom/gsm/meas_rep.hHarald Welte1-23/+2
Back in March 2013, some structures and defines related to decoded measurement reports have been moved from openbsc to libosmocore (libosmocore e128f4663104ed64e33e362cff2566f36d65e658) so that they can be used also from osmo-bts. This finally makes gsm_lchan follow suit for osmo-bts.
2011-04-18misc: Move from u_int to uint types of stdint.hHolger Hans Peter Freyther1-10/+12
This was done with sed on the files.
2009-12-26[meas_rep] Add raw neighbor index into per-cell parsed meas repHarald Welte1-0/+1
2009-12-21meas_rep: utility function for processing of measurement reportsHarald Welte1-0/+27
This provides two functions: get_meas_rep_avg() to obtain the sliding window average of one particular field, and meas_rep_n_out_of_m_be() to check if at least N out of M measurments are >= BE.
2009-12-15mroe comments on meas_rep data structuresHarald Welte1-0/+5
2009-12-1404.08 MEAS REP: Convert relative cell number to ARFCNHarald Welte1-1/+1
Since we are keeping a bitvec of the neighbor cells, we can now use bitvec_get_nth_set_bit() to determine the ARFCN for each reported cell in the 04.08 MEASUREMENT REPORT.
2009-11-30[handover] export measurement reports via signalHarald Welte1-0/+2
This patch introduces the S_LCHAN_MEAS_REP signal which is used to export measurement reports as input to the yet-to-be-written handover algorithm.
2009-11-29New complete measurement result/report handlingHarald Welte1-0/+50
This patch extends struct gsm_meas_rep into a complete structure containing all information from both uplink and downlink measurement results/reports. This is a first step to provide this complete measurement data as a C structure into a to-be-implemented handover decision algorithm.