TMTC commander for EIVE OBSW
Go to file
Robin Müller ef23aced2b
factory flash op code
2022-11-17 16:51:12 +01:00
.run some restructuring 2022-11-14 10:56:14 +01:00
config update events 2022-11-16 15:25:20 +01:00
deps new test service commands 2022-11-02 19:49:07 +01:00
filetest add two files for filetest 2022-09-16 17:31:05 +02:00
gomspace some more cleaning and set ID updates 2022-10-18 11:01:01 +02:00
pus_tc some cleaning up 2022-11-03 22:04:21 +01:00
pus_tm some cleaning up 2022-11-03 22:04:21 +01:00
template scex continued 2022-06-30 21:49:25 +02:00
tmtc factory flash op code 2022-11-17 16:51:12 +01:00
utility moved logger 2022-04-05 00:51:52 +02:00
.gitignore CFDP integration 2022-09-16 17:28:19 +02:00
.gitmodules move dependencies int deps folder 2022-07-04 11:52:47 +02:00
CHANGELOG.md update changelog entry 2022-10-20 14:23:48 +02:00
LICENSE added license files 2022-01-26 15:13:23 +01:00
NOTICE added license files 2022-01-26 15:13:23 +01:00
README.md README fix 2022-05-18 18:32:20 +02:00
lint.py adaptions for windows in lint script 2022-03-01 17:13:20 +01:00
logo.png some small bugfixes 2020-12-17 18:00:32 +01:00
requirements.txt bump required tmtccmd version 2022-05-25 14:59:06 +02:00
setup.cfg bump required tmtccmd version 2022-05-25 14:59:06 +02:00
setup.py added setup.cfg and setup.py file 2022-05-17 14:28:17 +02:00
tmtcc.py bugfix listener mode 2022-11-02 16:08:36 +01:00
tmtcloop.py starting changing code to new API 2022-07-04 15:22:53 +02:00

README.md

TMTC Commander EIVE

This application can be used to test the EIVE On-Board Software. Furthermore, it can also be used to retrieve all sorts of telemetry data like housekeeping data.

It is recommended to use this application with a virtual environment. The virtual environemnt chapter describes how to set one up. The requirements describes how to install all required packages.

The configuration file can currently be found at tmtc_conf.json. It caches settings like the default communication interface or parameters like the TCP port when using the TCP communication interface.

Examples

Assuming you are running in a virtual environment and all package requirements were installed properly.

Run CLI mode

./tmtccli.py

Run GUI mode

./tmtcgui.py

Set up virtual environment

Linux

  1. Create virtual environment

    python3 -m venv venv
    
  2. Activate virtual environment

    . venv/bin/activate
    

Windows

  1. Create virtual environment

    py -m venv venv
    
  2. Activate virtual environment

    venv\Scripts\activate.bat
    

Install requirements

There are two ways to install the requirements. One is to install the primary dependency tmtccmd interactively. This is the recommended way

Assuming you are running in a virtual environment:

  1. Install tmtccmd for virtual environment. -e for interactive installation.

    cd tmtccmd
    pip install -e .[gui]
    
  2. You can also install the spacepackets package locally/interactively Normally, it will be installed as a tmtccmd dependency.

    cd spacepackets
    pip install -e .
    

Alternatively you can also install the packages from PyPI completely, but the risk of incompatibilities will be high there

pip install -r requirements.txt

Run Linter

Can be used to quickly check validity of script. Install flake8 first

python3 -m pip install flake8

or on Windows

py -m pip install flake8

and then run the lint.py script

./lint.py

Run Auto-Formatter

This repo is auto-formatted using black. Assuming black is installed, you can simply run

black .