https://github.com/batchdrake/aptplugin
APT Plugin for SigDigger
https://github.com/batchdrake/aptplugin
Last synced: 8 months ago
JSON representation
APT Plugin for SigDigger
- Host: GitHub
- URL: https://github.com/batchdrake/aptplugin
- Owner: BatchDrake
- Created: 2022-04-29T11:19:56.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T08:42:12.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T08:11:12.195Z (9 months ago)
- Language: C++
- Size: 9.51 MB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# APTPlugin
**APTPlugin** is a demonstrator plugin for the new SigDigger's plugin support. It enables APT decoding as a new inspector widget, under the following demodulators:
* **Audio demodulator**: in which the channel is treated as a regular audio channel, and the audio FM demodulator is switched on (**this is the recomended configuration**)
* **Digital FM demodulator (FSK)**: which relies on the classic FSK demodulator provided by Suscan (this one is usually faster, but it also lets in more noise)
* **Digital AM demodulator (ASK)**: which treats the signal as the AM subcarrier of the FM channel.
## Demo
[](https://www.youtube.com/watch?v=-GAIBVEWOts)
## Palette support
APTPlugin uses the spectrum palettes to colorize the decoded map. This is what some of the available palettes look like over the same map:





## Installing this plugin, in 3 easy steps
**Step 1: generate makefiles**
Make sure that sigutils, suscan, SuWidgets and SigDigger have been installed in a system-wide location with `sudo make install`
```
$ cd APTPlugin
$ qmake APTPlugin.pro
```
**Step 2: build**
```
$ make
```
**Step 3: install**
```
$ mkdir -p ~/.suscan/plugins
$ cp libAPTPlugin.so.1.0.0 ~/.suscan/plugins
```
And that's it! :D