aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/load_indication.c
AgeCommit message (Collapse)AuthorFilesLines
2012-11-24paging: send CCCH load indications even if paging load below thresholdHarald Welte1-0/+6
This is mainly as OpenBSC is adjusting the amount of paging commands it sends based on this magic value 0xffff.
2012-06-15CCCH LOAD IND: Avoid divide-by-zeroHarald Welte1-2/+11
The total count of RACH or PCH slots should never be zero, as they constantly increment. However, just as a safeguard, we introduce an explicit handign to avoid divide-by-zero situations
2012-06-15RSL: Add CCCH LOAD INDICATION for RACHHarald Welte1-1/+9
We now count the total number of RACH slots, the number with rx level above the busy threshold, and the number of valid access bursts. This data is used to generate RSL CCCH LOAD INDICATION for the RACH.
2012-06-14attempt to make CCCH Load Indications for PCH workHarald Welte1-12/+20
2011-06-27re-work original osmo-bts with support for sysmocom femtobtsHarald Welte1-0/+69
This code re-works osmo-bts to add support for the upcoming sysmocom BTS. It also tries to add some level of abstraction between the generic part of a BTS (A-bis, RSL, OML, data structures, paging scheduling, BCCH/AGCH scheduling, etc.) and the actual hardware-specific bits. The hardware-specific bits are currently only implemented for the sysmocom femtobts, but should be (re-)added for osmocom-bb, as well as a virtual BTS for simulation purpose later. The sysmocom bts specific parts require hardware-specific header files which are (at least currently) not publicly distributed.