master
pabr 2017-12-09 20:49:52 +01:00
rodzic 246a05c760
commit 8f8ee3c02d
2 zmienionych plików z 23 dodań i 15 usunięć

Wyświetl plik

@ -27,3 +27,9 @@ No attempt is made to follow popular object-oriented practices.
# Known limitations
* The code is not intended to be thread-safe.
* Ideally, signal processing software should always yield the same
output when presented with the same input.
leandvb should be deterministic on fast input streams (files).
However, on real-time streams, scheduling randomness can affect
internal feedback loops and cause small variations in the output.

Wyświetl plik

@ -1,23 +1,23 @@
leansdr: Lightweight, portable software-defined radio.
Copyright (C) 2016 <pabr@pabr.org>
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/>.
> 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/>.
**leansdr** consists of:
* A simple data-flow framework for signal processing
* A library of software-defined radio functions
* A C++ library of software-defined radio functions
* Applications built on top of the above.
Currently the main application is **leandvb**.
@ -25,7 +25,9 @@ Currently the main application is **leandvb**.
# leandvb
**leandvb** is a DVB-S demodulator designed for speed rather
than sensitivity. See http://www.pabr.org/radio/leandvb .
than sensitivity.
See http://www.pabr.org/radio/leandvb for details and use cases.
## Quick start guide