You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 months ago | |
---|---|---|
fsfwgen | 5 months ago | |
.gitignore | 11 months ago | |
LICENSE | 2 years ago | |
NOTICE | 2 years ago | |
README.md | 11 months ago | |
lint.py | 11 months ago | |
pyproject.toml | 11 months ago | |
requirements.txt | 2 years ago | |
setup.cfg | 11 months ago | |
setup.py | 11 months ago |
README.md
FSFW Generators
Generic Python module to generate source code or information for the Flight Software Framework.
Currently, this includes the following helper modules:
events
to generate Event translation source files and CSV listsreturnvalues
to generate Returnvalue translation source files and CSV listsobjects
to generate Object ID translation files and CSV lists
Installing
It is recommended to use a virtual environment
Linux
python3 -m venv venv
. venv/bin/activate
Windows
py -m venv venv
. venv/bin/activate
Then you can install the package with
python -m pip install .
You can add -e
after install
to perform an interactive/debug installation.
This is recommended if you debugging, planning to extend the script or
performing changes.