TMTC commander for EIVE OBSW
Go to file
Robin Mueller 61937a0272
bump tmtccmd requirement
2022-04-06 19:04:18 +02:00
.idea/runConfigurations pre send CB works properly now 2022-04-06 16:17:51 +02:00
config pre send CB works properly now 2022-04-06 16:17:51 +02:00
gomspace HKhandler p60dock 2022-04-04 18:46:52 +02:00
pus_tc getter function renamed 2022-04-06 16:19:59 +02:00
pus_tm hk handing bpx fix 2022-04-06 17:35:04 +02:00
spacepackets@0501a26b6f pre send CB works properly now 2022-04-06 16:17:51 +02:00
tmtccmd@48b6b8396e bump tmtccmd requirement 2022-04-06 19:04:18 +02:00
utility moved logger 2022-04-05 00:51:52 +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
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 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 tmtccmd requirement 2022-04-06 19:04:18 +02:00
tmtccli.py renamed function 2022-04-06 18:25:54 +02:00
tmtcgui.py tmtccmd refactoring 2022-04-05 15:19:46 +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 .
  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]