You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
4.4 KiB
Markdown

10 years ago
srsLTE
11 years ago
========
10 years ago
srsLTE is a free and open-source LTE library for SDR UE and eNodeB. The library is highly modular with minimum inter-module or external dependencies. It is entirely written in C and, if available in the system, uses the acceleration library VOLK distributed in GNURadio.
10 years ago
10 years ago
The srsLTE software license is LGPLv3.
10 years ago
Current Features:
* LTE Release 8 compliant
* FDD configuration
* Tested bandwidths: 1.4, 3, 5 and 10 and 20 MHz
* Transmission mode 1 (single antenna) and 2 (transmit diversity)
* Cell search and synchronization procedure for the UE
* All DL channels are supported UE/eNodeB side: PSS, SSS, PBCH, PCFICH, PHICH, PDCCH, PDSCH
* Some UL channels are supported UE side: PRACH, PUSCH, DM-RS
* HARQ DL supported at receiver UE side
* Frequency-based ZF and MMSE equalizer
* Highly optimized Turbo Decoder (up to 25 Mbps/iteration @ 3 GHz i7 1 core)
* MATLAB and OCTAVE MEX library generation for many components
* UE receiver tested and verified with Amarisoft LTE 100 eNodeB and commercial LTE networks (Telefonica Spain, Three.ie and Eircom in Ireland)
11 years ago
Hardware
========
10 years ago
The library currently uses Ettus Universal Hardware Driver (UHD). Thus, any hardware supported by UHD 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. We are using the B210 USRP.
11 years ago
11 years ago
Download & Install Instructions
=================================
10 years ago
* Mandatory dependencies:
10 years ago
* libfftw
10 years ago
* Optional requirements:
* srsgui: for real-time plotting. Download it here: https://github.com/srslte/srsgui
10 years ago
* VOLK: if the VOLK library and headers are detected, they will be used for accelerating some signal processing functions.
* Matlab/Octave: if found by CMake, MEX files will also be generated and installed. If you find any compilation issue with MEX and you don't need them, pass -DDisableMex=ON to cmake to disable them.
Download and build srsLTE:
11 years ago
```
10 years ago
git clone https://github.com/srsLTE/srsLTE.git
cd srsLTE
11 years ago
mkdir build
cd build
cmake ../
make
```
11 years ago
The library can also be installed using the command ```sudo make install```.
11 years ago
10 years ago
Running srsLTE Examples
10 years ago
========================
11 years ago
10 years ago
* SIB1 reception and UE measurement from commercial LTE networks:
```
lte/examples/pdsch_ue -f [frequency_in_Hz]
```
Where -f is the LTE channel frequency.
* eNodeB to UE Downlink PHY test
11 years ago
10 years ago
You will need to computers, each equipped with a USRP. At the transmitter side, run:
11 years ago
11 years ago
```
10 years ago
lte/examples/pdsch_enodeb -f [frequency_in_Hz] [-h for more commands]
11 years ago
```
11 years ago
10 years ago
At the receiver run:
11 years ago
```
10 years ago
lte/examples/pdsch_ue -r 1234 -f [frequency_in_Hz]
11 years ago
```
10 years ago
At the transmitter console, it is possible to change the Modulation and Coding Scheme (MCS) by typing a new number (between 0 and 28) and pressing Enter.
The output at the receiver should look something similar to the following video. In this example, we removed the transmitter and receiver antennas in the middle of the demonstration, showing how reception is still possible (despite with some erros).
11 years ago
https://www.dropbox.com/s/txh1nuzdb0igq5n/demo_pbch.ogv
![Screenshopt of the PBCH example output](pbch_capture.png "Screenshopt of the PBCH example output")
10 years ago
* Video over Downlink PHY (eNodeB to UE)
11 years ago
10 years ago
The previous example sends random bits to the UE. It is possible to open a TCP socket and stream video over the LTE PHY DL wireless connection. At the transmitter side, run the following command:
10 years ago
```
10 years ago
lte/examples/pdsch_enodeb -f [frequency_in_Hz] -u 2000 [-h for more commands]
10 years ago
```
10 years ago
The argument -u 2000 will open port 2000 for listening for TCP connections. Set a high-order MCS, like 16 by typing 16 in the eNodeB console and pressing Enter.
11 years ago
10 years ago
```
lte/examples/pdsch_ue -r 1234 -u 2001 -U 127.0.0.1 -f [frequency_in_Hz]
```
The arguments -u 2001 -U 127.0.0.1 will forward the data that was injected at the eNodeB to address:port indicated by the argument. Once you have the system running, you can transmit some useful data, like a video stream. At the transmitter side, run:
```
avconv -f video4linux2 -i /dev/video0 -c:v mp4 -f mpegts tcp://127.0.0.1:2000
```
to stream the video captured from the webcam throught the local host port 2000. At the receiver, run:
```
avplay tcp://127.0.0.1:2001?listen -analyzeduration 100 -loglevel verbose
```
to watch the video.
11 years ago
Support
========
10 years ago
Mailing list: http://www.softwareradiosystems.com/mailman/listinfo/srslte-users