TMTC commander for EIVE OBSW
Go to file
Robin Müller 4e2d561b96 simpler name for scripts 2021-12-16 14:31:35 +01:00
.idea/runConfigurations simpler name for scripts 2021-12-16 14:31:35 +01:00
config commands for ccsds and pdec handler 2021-11-24 15:56:25 +01:00
gomspace p60 print command 2021-09-20 11:47:04 +02:00
pus_tc commands for ccsds and pdec handler 2021-11-24 15:56:25 +01:00
pus_tm added try except block 2021-12-15 11:19:19 +01:00
spacepackets@464274a91c update submodules 2021-12-15 09:55:43 +01:00
tmtccmd@bfa459ccc3 update submodules 2021-12-15 09:55:43 +01:00
utility smaller changes 2021-05-17 18:01:55 +02:00
.gitignore ignore gps log 2021-09-07 13:28:36 +02:00
.gitmodules added spacepackets submodule 2021-10-02 12:17:21 +02:00
README.md instructions to run linter 2021-08-09 11:45:01 +02:00
lint.py updated linter python script 2021-08-09 11:38:37 +02:00
logo.png some small bugfixes 2020-12-17 18:00:32 +01:00
requirements.txt simpler name for scripts 2021-12-16 14:31:35 +01:00
tmtccli.py simpler name for scripts 2021-12-16 14:31:35 +01:00
tmtcgui.py simpler name for scripts 2021-12-16 14:31:35 +01: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 .
  1. Activate virtual environment
./Scripts/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
Scripts\activate.bat
  1. Install tmtccmd for virtual environment. -e for interactive installation.
cd tmtccmd
py -m pip install -e .[gui]