Project Horus Telemetry Decoder
 
 
Go to file
Mark Jessop c515c9eed9 Add relative position displays. 2020-07-05 17:32:05 +09:30
horusgui Add relative position displays. 2020-07-05 17:32:05 +09:30
.gitignore
LICENSE
Makefile
README.md Add relative position displays. 2020-07-05 17:32:05 +09:30
pyproject.toml
requirements.txt
setup.py

README.md

Project Horus Telemetry Decoder

Telemetry demodulator for the following modems in use by Project Horus

  • Horus Binary Modes
    • v1 - Legacy 22 byte mode, Golay FEC
    • v2 - 16/32-byte modes, LDPC FEC (Still in development)
  • RTTY (7N2 only, for now)

Written by Mark Jessop vk5qi@rfhead.net

Note: This is very much a work in progress!

TODO LIST - Important Stuff

  • Stop decoded data pane from resizing on bad/long decodes - TODO
  • Export of telemetry via Horus UDP
  • Better build system
  • Windows binary

TODO LIST - Extras

  • UDP input from GQRX
  • Waterfall Display (? Need something GPU accelerated if possible...)

Usage

Build HorusLib

$ git clone https://github.com/projecthorus/horusdemodlib.git
$ cd horusdemodlib && mkdir build && cd build
$ cmake ..
$ make
$ make install

Create a Virtual Environment

Create a virtual environment and install dependencies.

$ git clone https://github.com/projecthorus/horus-gui.git
$ cd horus-gui
$ python3 -m venv venv
$ source venv/bin/activate
(venv) $ pip install pip -U       (Optional - this updates pip)
(venv) $ pip install -r requirements.txt

Install Package

Install package in a editable state. This type of installation allows a developer to make changes to the source code while retaining the installation entry points so it can be used like a normal install.

(venv) $ pip install -e .

Run

$ python -m horusgui.gui