blob: 7c7e9d7284b9ade1f5a43401843dd68e2a59ae1a (
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
|
# Gascop
Gascop is a lightweight POCSAG decoder for use with [rtl-sdr](http://sdr.osmocom.org/trac/wiki/rtl-sdr) devices, which is heavily inspired by [dump1090](https://github.com/antirez/dump1090/) and is currently under development mainly as an exercise in processing data from rtl-sdr devices.
Gascop does not use any part of the GNU Radio stack (not that there's anything wrong with it / some of my best friends / etc...), and thus is very easy to build and use.
If you are interested in the theory behind the code, take a look at [the wiki](https://github.com/yuvadm/gascop/wiki/Theory).
## Build
```bash
$ make
```
## Use
```bash
$ ./gascop 123450000 # for listening on 123.450 Mhz
```
## License
Copyright (c) 2013 by Yuval Adam, based on work by Salvatore Sanfilippo, all rights reserved.
Gascop is free for use and distribution under the BSD license.
|