aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts
AgeCommit message (Collapse)AuthorFilesLines
2011-07-05logging: Add DSP log subsystemHarald Welte1-0/+1
2011-07-01fix various compiler warningsHarald Welte1-0/+5
2011-07-01fix BTS initialization orderHarald Welte1-1/+1
The sequence is as follows: 0) start osmo-bts 1) start connection attempts to BTS 2) issue L1-RESET.req 3) receive L1-RESET.conf 4) issue RF-ACTIVATE.req 5) receive RF-ACTIVATE.conf 6) receive attributes for TRX 7) receive opstart for TRX 8) issue MPH-INIT.req [...] The important point here is: We don't want the BSC to set TRX attributes or do TRX opstart before our RF related hardware is initialized.
2011-06-29deactivate RF + exit when the Abis link is goneHarald Welte2-0/+3
The idea is that the BTS process is re-spawned from init/upstart/systemd
2011-06-29implement baseic uplink measurement processing + reportingHarald Welte2-1/+15
* gather measurements from each PH-DATA.ind * check every TDMA frame about meas period expiration * compute averages after period expired * put MS DL MEAS REP into RSL MEAS RES messages, include UL meas bugs: * L3 INFO content seems to have some offset * is_sub is not set anywhere * measurement periods might have up/downlink offset
2011-06-28implement RSL DEACTIVATE SACCHHarald Welte1-0/+1
2011-06-27paging: add paging_reset() functionHarald Welte1-0/+2
2011-06-27re-work original osmo-bts with support for sysmocom femtobtsHarald Welte12-169/+211
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.
2011-05-22abis: use ipaccess protocol header from libosmogsmHarald Welte1-36/+1
2011-05-22[partial] port to new libosmocore-0.3 APIsHarald Welte4-9/+8
2011-03-04Fix include paths and start to make code compileHarald Welte2-0/+4
(still lots of missing references into osmocom-bb code)
2011-03-04Add autotools skeleton codeHarald Welte2-0/+27
2011-03-04Import all C and Header files from jolly/bts branch of osmocom-bb.gitHarald Welte6-0/+299
The BTS code shall reside in a separate git repository, thus I'm importing the C and H files here.