TMTC commander for EIVE OBSW
Go to file
Robin Müller 11ea4ad44e
add changelog
2022-05-04 14:43:47 +02:00
.run move run config to new format 2022-04-28 18:54:28 +02:00
config update auto-generated files 2022-05-03 16:32:33 +02:00
gomspace continued pdu1 pdu2 handling 2022-04-12 16:00:37 +02:00
pus_tc removed obsolete commands 2022-04-30 11:10:22 +02:00
pus_tm fix in service 8 reply handling 2022-04-30 09:26:19 +02:00
spacepackets@522b021ba5 bump spacepackets to v0.6.2 2022-04-08 15:03:08 +02:00
tmtccmd@ea2992372f bump tmtccmd 2022-05-02 12:53:01 +02:00
utility moved logger 2022-04-05 00:51:52 +02:00
.gitignore added tmtc_conf.json 2022-04-30 15:33:24 +02:00
.gitmodules added spacepackets submodule 2021-10-02 12:17:21 +02:00
CHANGELOG.md add changelog 2022-05-04 14:43:47 +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 python3 she-bang fix 2022-04-27 11:26:51 +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]