gr-gsm/README.md

34 lines
766 B
Markdown
Raw Normal View History

2014-08-06 18:14:08 +00:00
The gr-gsm project
==================
2014-08-06 19:27:12 +00:00
The project is based on the gsm-receiver which was written by me for Airprobe project.
The aim is to provide set of tools that enable reliable receiving information transmitted by GSM devices.
Installation
2014-08-06 12:28:23 +00:00
------------
On clean Ubuntu 14.04 following packages are required in order to compile gr-gsm:
2014-08-06 12:29:22 +00:00
```
sudo apt-get install gnuradio gnuradio-dev uhd-host gr-osmosdr #use this command if you don't want to compile gnuradio sources
sudo apt-get install git cmake libboost1.55-all-dev libcppunit-dev swig doxygen liblog4cpp5-dev
2014-08-06 12:29:22 +00:00
```
Download gr-gsm sources with following command:
2014-08-06 13:11:07 +00:00
2014-08-06 12:30:46 +00:00
```
git clone git@github.com:Jakotako/gr-gsm.git
2014-08-06 12:30:46 +00:00
```
2014-08-06 13:11:07 +00:00
and compile it:
2014-08-06 12:28:23 +00:00
```
cd gr-gsm
mkdir build
cmake ..
make
sudo make install
2014-08-06 12:28:23 +00:00
```
2014-08-06 19:27:12 +00:00