aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: cc33beac9fc76542ede6cba4a84221cc8463d60c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
The gr-gsm project
==================
The project is based on the gsm-receiver which was written by me for Airprobe project.

The aim is to provide set of tools for receiving information transmitted by GSM equipment/devices.

Installation
------------

Currently compilation of new gnuradio is required in order to run gr-gsm. 
In order to compile gnuradio on fresh Ubuntu 14.04 run following commands:

```
sudo apt-get install git
git clone git://github.com/pybombs/pybombs
cd pybombs
./pybombs install gnuradio uhd gr-osmosdr
```
At the first run pybombs will ask for configuration options. As target directory choose /usr/local/. The rest of the options can be left default.


To download gr-gsm sources run following command:

```
git clone git@github.com:Jakotako/gr-gsm.git
```
Make sure that you have all required packages:

```
sudo apt-get install cmake libboost1.55-all-dev libcppunit-dev swig doxygen liblog4cpp5-dev
```

To compile and install gr-gsm run:

```
cd gr-gsm
mkdir build
cmake ..
make
sudo make install
```