• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmake/H17-Feb-2020-2116

dmr/H17-Feb-2020-2,4292,132

examples/H17-Feb-2020-2914

pocsag/H17-Feb-2020-597569

ysf/H17-Feb-2020-2,8822,742

.gitignoreH A D17-Feb-202012 32

LICENSEH A D17-Feb-202034.3 KiB675553

README.mdH A D17-Feb-20201,013 3020

cmake-builder-depsH A D17-Feb-202010 11

dc_block.cH A D17-Feb-20201.4 KiB5952

digitalvoice_filter.cH A D17-Feb-20203.1 KiB10780

dmr_decoder.cH A D17-Feb-202023.4 KiB666532

dumphex.cH A D17-Feb-2020963 3129

dumphex.hH A D17-Feb-2020104 54

fsk_demodulator.cH A D17-Feb-20205.6 KiB183139

gfsk_demodulator.cH A D17-Feb-20205.8 KiB189140

hamming_distance.cH A D17-Feb-2020286 119

hamming_distance.hH A D17-Feb-2020330 119

mbe_synthesizer.cH A D17-Feb-20208.2 KiB237170

pocsag_decoder.cH A D17-Feb-20208.9 KiB274234

rrc_filter.cH A D17-Feb-20203.2 KiB11180

version.cH A D17-Feb-2020139 76

version.hH A D17-Feb-202046 32

ysf_decoder.cH A D17-Feb-202025.7 KiB646490

README.md

1# Digital Ham Radio decoding tools
2
3This a simple set of command-line tools that is intended to be used to decode digital modulations used by ham radio
4operators. The main focus is on digital voice modes.
5
6Right now this project enables you to decode DMR and YSF, future plans include NXDN and D-Star.
7
8The main use of this project is to run in the backend of [OpenWebRX](https://github.com/jketterl/openwebrx), where it
9decodes the available information, which is then displayed on the receiver's website.
10
11## Requirements
12
13Most digital voice modes in the ham radio universe right now use some version of the AMBE digital voice codec. In order
14to decode them, you will need to install [mbelib](https://github.com/szechyjs/mbelib).
15
16## Installation
17
18This project comes with a cmake build. It is recommended to build in a separate directory.
19
20```
21mkdir build
22cd build
23cmake ..
24make
25sudo make install
26```
27
28## Examples
29
30You can find shell scripts that show the basic usage of the components in the `examples` folder.