LTScope is a free and open-source LTE control channel decoder developed by PAWS group at Princeton University.
LTScope is built atop of srsLTE, so we introduce basic information about srsLTE.
- LTE Release 8 compliant (with selected features of Release 9)
- FDD configuration
- Tested bandwidths: 1.4, 3, 5, 10, 15 and 20 MHz
- Transmission mode 1 (single antenna), 2 (transmit diversity), 3 (CCD) and 4 (closed-loop spatial multiplexing)
- Frequency-based ZF and MMSE equalizer
- Evolved multimedia broadcast and multicast service (eMBMS)
- Highly optimized Turbo Decoder available in Intel SSE4.1/AVX2 (+100 Mbps) and standard C (+25 Mbps)
- MAC, RLC, PDCP, RRC, NAS, S1AP and GW layers
- Detailed log system with per-layer log levels and hex dumps
- MAC layer wireshark packet capture
- Command-line trace metrics
- Detailed input configuration files
srsLTE currently supports the Ettus Universal Hardware Driver (UHD) and the bladeRF driver. Thus, any hardware supported by UHD or bladeRF can be used. There is no sampling rate conversion, therefore the hardware should support 30.72 MHz clock in order to work correctly with LTE sampling frequencies and decode signals from live LTE base stations.
According to the srsLTE website, srsLTE can support the following hardware:
- USRP B210
- USRP B205mini
- USRP X300
- limeSDR
- bladeRF
We, however, only tested LTScope on USRP B210 and USRP X310.
We have tested LTScope on Ubuntu 16.04. To guarantee the performance, we strongly recommend installing LTScope on this version of Ubuntu. If you have tested on other versions of Ubuntu, please let us know.
On Ubuntu 16.04, we can install the required libraries via the following command:
sudo apt-get install cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev
We need to install the srsgui, a GUI tool for showing realtime results. On Ubuntu 16.04, you can install srsgui via the following commands:
git clone https://github.com/srsLTE/srsGUI.git
cd srsGUI
mkdir build
cd build
cmake ../
make
sudo make install
We also recommend to install gnuradio for the required VOLK. On Ubuntu, you can install gnuradio via the following commands:
sudo apt install gnuradio
sudo apt-get update
sudo apt install gnuradio
We need to install the RF front-end driver. The required RF front-end depends on which kind of software-define-radio you use. We only tested LTScope on USRP, which requires UHD. We recommend installing UHD using the binaries provided by Ettus Research, via the following commands:
sudo add-apt-repository ppa:ettusresearch/uhd
sudo apt-get update
sudo apt-get install libuhd-dev libuhd003 uhd-host
Download and build LTScope:
git clone [email protected]:YaxiongXiePrinceton/LTScope.git
cd srsLTE
mkdir build
cd build
cmake ../
make
make test
sudo make install
sudo srslte_install_configs.sh