osmocom-bb/src/target/fake_trx
Vadim Yanitskiy e39bb0f0d1 fake_trx/ctrl_if.py: allow adding custom params to response
Change-Id: I551bb425c25a5c978801d9e1e033b4ba352e259f
2017-11-19 17:35:07 +07:00
..
.gitignore target/fake_trx: initial release of virtual transceiver 2017-11-19 17:35:07 +07:00
README target/fake_trx: initial release of virtual transceiver 2017-11-19 17:35:07 +07:00
burst_fwd.py fake_trx/burst_fwd.py: append two unused bytes at the end 2017-11-19 17:35:07 +07:00
clck_gen.py target/fake_trx: initial release of virtual transceiver 2017-11-19 17:35:07 +07:00
ctrl_cmd.py fake_trx/ctrl_cmd.py: print response to stdout 2017-11-19 17:35:07 +07:00
ctrl_if.py fake_trx/ctrl_if.py: allow adding custom params to response 2017-11-19 17:35:07 +07:00
ctrl_if_bb.py fake_trx: fix copy-paste error 2017-11-19 17:35:07 +07:00
ctrl_if_bts.py fake_trx: fix copy-paste error 2017-11-19 17:35:07 +07:00
fake_trx.py target/fake_trx: initial release of virtual transceiver 2017-11-19 17:35:07 +07:00
udp_link.py target/fake_trx: initial release of virtual transceiver 2017-11-19 17:35:07 +07:00

README

This is a set of tools for creating a virtual Um-interface between
OsmocomBB and OsmoBTS. It may be extremely useful for testing and
development of GSM stack, including both sides (MS and BTS). This
software implements OsmoTRX (Osmocom's fork of OpenBTS transceiver)
style clock (CLCK), control (CTRL) and data interfaces. So, OsmoBTS
source code doesn't require any modifications, while for OsmocomBB
you will need to use a new application - trxcon, which can be found
in the 'fixeria/sdr_phy' branch until one is merged to master.

Brief description of available applications:

  - fake_trx.py - main application, that allows to connect both
    OsmocomBB and OsmoBTS without actual RF hardware. Currently
    only a single MS may work with a single BTS.

  - clck_gen.py - a peripheral tool aimed to emulate TDMA frame
    clock generator. Could be used for testing and clock
    synchronization of multiple applications. It should be noted,
    that one relays on generic system timer (via Python), so
    a random clock jitter takes place.

  - ctrl_cmd.py - another peripheral tool, which could be used
    for sending CTRL commands directly in manual mode, and also
    for application fuzzing.