Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BatchDrake/suscan
Channel scanner based on sigutils library
https://github.com/BatchDrake/suscan
Last synced: 3 days ago
JSON representation
Channel scanner based on sigutils library
- Host: GitHub
- URL: https://github.com/BatchDrake/suscan
- Owner: BatchDrake
- License: gpl-3.0
- Created: 2017-02-11T18:11:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T16:58:06.000Z (3 months ago)
- Last Synced: 2024-08-18T12:59:58.268Z (3 months ago)
- Language: C
- Size: 4.98 MB
- Stars: 122
- Watchers: 11
- Forks: 29
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
- Awesome-CTS - Suscan
README
# Suscan - A realtime DSP library
_**Important note**: if you are looking for the graphical application based on this library, it has been deprecated and removed from the source tree. Suscan (GUI) was a GTK3-based application with poor performance and responsiveness that was eventually replaced by the Qt5 application [SigDigger](https://github.com/BatchDrake/SigDigger). You will still need Suscan (library) in order to compile SigDigger._Suscan is a realtime DSP processing library. It provides a set of useful abstractions to perform dynamic digital signal analysis and demodulation. Suscan offers features like:
- Multicore-friendly signal processing, based on worker threads
- Generic ASK, FSK, PSK and audio demodulators
- An extensible codec interface
- Configuration file API (XML)
- Source API based on SoapySDR## Getting the code
Just clone it from the GitHub repository. Make sure you pass --recurse-submodules to git clone so all required submodules are also cloned.```bash
% git clone --recurse-submodules https://github.com/BatchDrake/suscan.git
```## Building and installing Suscan
In order to build Suscan, you will need the development files for the following packages:
* sigutils
* fftw3
* sndfile
* SoapySDR
* libxml-2.0If you are in a Debian-like operating system, you will also need `cmake` and `build-essential`.
After installing all dependencies, enter Suscan's source directory and compile by typing:
```bash
% cd suscan
% mkdir build
% cd build
% cmake ..
% make
```If the previous commands were successful, you are ready to install Suscan in your system by executing (as root):
```
# make install
```You can verify your installation by running:
```
% suscan.status
```If everything went fine, you should see the message:
```
suscan.status: suscan library loaded successfully.
```