pabr-leansdr/README.md

59 wiersze
1.8 KiB
Markdown

2016-09-02 21:43:09 +00:00
leansdr: Lightweight, portable software-defined radio.
2017-12-09 19:49:52 +00:00
Copyright (C) 2016 <pabr@pabr.org>
2016-09-02 21:43:09 +00:00
2017-12-09 19:49:52 +00:00
> This program is free software: you can redistribute it and/or modify
> it under the terms of the GNU General Public License as published by
> the Free Software Foundation, either version 3 of the License, or
> (at your option) any later version.
>
> This program is distributed in the hope that it will be useful,
> but WITHOUT ANY WARRANTY; without even the implied warranty of
> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> GNU General Public License for more details.
>
> You should have received a copy of the GNU General Public License
> along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-09-02 21:43:09 +00:00
**leansdr** consists of:
* A simple data-flow framework for signal processing
2017-12-09 19:49:52 +00:00
* A C++ library of software-defined radio functions
2016-09-02 21:43:09 +00:00
* Applications built on top of the above.
Currently the main application is **leandvb**.
# leandvb
**leandvb** is a DVB-S demodulator designed for speed rather
2017-12-09 19:49:52 +00:00
than sensitivity.
See http://www.pabr.org/radio/leandvb for details and use cases.
2016-09-02 21:43:09 +00:00
## Quick start guide
```
git clone http://github.com/pabr/leansdr.git
cd leansdr/src/apps
make
```
### Receiving DATV transmissions from the ISS with a RTL-SDR dongle:
```
rtl_sdr -f $DOWNCONVERTED_FREQ -s 2400000 capture.iq
2016-09-03 20:20:25 +00:00
./leandvb -f 2400e3 --sr 2000e3 --cr 1/2 < capture.iq > capture.ts
2016-09-02 21:43:09 +00:00
mplayer capture.ts
```
### Troubleshooting
```
2016-09-03 20:20:25 +00:00
./leandvb --gui -v -d -f 2400e3 --sr 2000e3 --cr 1/2 < capture.iq > capture.ts
2016-09-02 21:43:09 +00:00
```
2016-09-03 20:20:25 +00:00
### Live receiver with auto-detection of symbol rate and code rate:
2016-09-02 21:43:09 +00:00
```
2016-09-03 20:20:25 +00:00
rtl_sdr -f $DOWNCONVERTED_FREQ -s 2400000 - | ./leansdrscan -v ./leandvb --gui -f 2400e3 --sr 2000e3,1000e3,500e3,250e3 --cr 1/2,2/3,3/4,5/6,7/8 - | mplayer -cache 128 -
2016-09-02 21:43:09 +00:00
```