TMTC commander for EIVE OBSW
Go to file
Ulrich Mohr 963f48120e added sending of TM via TCP Port 2022-05-17 22:11:58 +02:00
.run new run cfg 2022-05-17 13:20:30 +02:00
config Merge branch 'mohr/looooop' into mohr/thermal 2022-05-17 14:45:46 +02:00
gomspace update tmtccmd and spacepackets dependency 2022-05-05 16:15:53 +02:00
pus_tc changed controller commanding to allow more flexibility 2022-05-17 22:11:31 +02:00
pus_tm added sending of TM via TCP Port 2022-05-17 22:11:58 +02:00
spacepackets@d0c3f4a802 update tmtccmd and spacepackets dependency 2022-05-05 16:15:53 +02:00
tmtccmd@862fdf23bc updated tmtccmd version 2022-05-17 22:04:56 +02:00
utility moved logger 2022-04-05 00:51:52 +02:00
.gitignore fixed conflicts 2022-05-03 19:12:37 +02:00
.gitmodules added spacepackets submodule 2021-10-02 12:17:21 +02:00
CHANGELOG.md update changelog 2022-05-12 20:51:25 +02:00
LICENSE added license files 2022-01-26 15:12:46 +01:00
NOTICE added license files 2022-01-26 15:12:46 +01:00
README.md README fixes 2022-05-17 14:14:48 +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
setup.cfg added setup.cfg and setup.py file 2022-05-17 14:28:17 +02:00
setup.py added setup.cfg and setup.py file 2022-05-17 14:28:17 +02:00
tmtcc.py simplified cli and gui app 2022-05-17 11:13:32 +02:00
tmtccli.py reduce comment block 2022-05-17 11:40:52 +02:00
tmtcgui.py reduce comment block 2022-05-17 11:40:52 +02:00
tmtcloop.py fixed looping mode 2022-05-17 22:10:53 +02:00

README.md

TMTC Commander EIVE

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

Set up virtual environment

Linux

  1. Create virtual environment
python3 -m venv venv
  1. Activate virtual environment
. venv/bin/activate
  1. Install tmtccmd for virtual environment. -e for interactive installation.
cd tmtccmd
python3 -m pip install -e .[gui]

Windows

  1. Create virtual environment
py -m venv .
  1. Activate virtual environment
venv\Scripts\activate.bat
  1. Install tmtccmd for virtual environment. -e for interactive installation.
cd tmtccmd
py -m pip install -e .[gui]