aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/trx_vty.c
AgeCommit message (Collapse)AuthorFilesLines
2016-06-16TRX: Add vty command to power on/off transceiverMax1-0/+19
Add vty command (under "phy X instance Y" hierarchy) to manually send POWERON or POWEROFF command. It's useful for debugging issues related to BTS/TRX initialization. Change-Id: I6dfebaf118cdf5ad144516b2b839b17350a73ce4 Related: OS#1648
2016-02-15Introduce new phy_link and phy_instance abstractionHarald Welte1-148/+233
This way we can model a flexible mapping between any number of PHYs, each having multiple instances, and then map BTSs with TRXx on top of those PHYs.
2016-02-15TRX: Move scheduler to src/commonHarald Welte1-1/+1
This is the final step to make the L1 scheduler generally available to other BTS models than OsmoTRX.
2016-01-22Add new bts_model_ctrl_cmds_install()Harald Welte1-0/+5
This is one step in making the main() functions of different BTS models more similar, so we can share one code rather than multiple copies of it.
2016-01-16TRX: Don't use magic numbers when we have #definesHarald Welte1-2/+2
2015-09-22TRX: Add VTY option to allow setting RTS advance in framesAndreas Eversberg1-1/+15
RTS (ready-to-send) must be issued in advance, so BTS core and especially osmo-pcu can provide downlink data frames early enough. In some cases PCU might provide frames too late, so they must be dropped. If PCU provides frames too late, due to high system load, this "RTS advance" setting must be increased.
2015-09-22trx: Add option to set transmit power reduction via OML (BSC)Andreas Eversberg1-2/+26
2015-09-22TRX: Fixed typos tranceiver -> transceiverAndreas Eversberg1-11/+11
2015-09-22TRX: Add VTY options to enable and disable SETTSC and SETBSICAndreas Eversberg1-0/+52
2015-09-22TRX: Implementation of MS power and timing advance loopsAndreas Eversberg1-0/+50
2015-09-22TRX: Introduce osmobts-trx, a layer 1 implementation for OpenBTS tranceiversAndreas Eversberg1-0/+281
The code is quite complete, TCH and PDCH channels are not yet tested.