TMTC commander for EIVE OBSW
Go to file
Jakob Meier 9005ccab3a run generator 2022-03-16 09:04:28 +01:00
.idea/runConfigurations core hk request 2022-03-13 21:35:12 +01:00
config run generator 2022-03-16 09:04:28 +01:00
gomspace applied black formatter 2022-01-18 14:03:56 +01:00
pus_tc core hk request 2022-03-13 21:35:12 +01:00
pus_tm core hk request 2022-03-13 21:35:12 +01:00
spacepackets@19e8a588fa spacepackets and tmtc update 2022-03-01 17:25:50 +01:00
tmtccmd@86cf0bf953 do not enter listener mode 2022-03-07 18:39:15 +01:00
utility star tracker commands 2022-02-27 16:17:24 +01: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
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 instructions to run linter 2021-08-09 11:45:01 +02:00
lint.py spacepackets and tmtc update 2022-03-01 17:25:50 +01:00
logo.png some small bugfixes 2020-12-17 18:00:32 +01:00
requirements.txt bump tmtccmd requirements 2022-03-03 19:07:35 +01:00
tmtccli.py added first ACS ASS command 2022-03-07 11:07:54 +01:00
tmtcgui.py applied black formatter 2022-01-18 14:03:56 +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]