fsfw-example-hosted/tmtc/tmtcgui.py
Robin Mueller 044d56e96a
Some checks failed
fsfw/fsfw example hosted/pipeline/head There was a failure building this commit
update tmtc python program
2022-05-18 23:41:05 +02:00

13 lines
277 B
Python

#!/usr/bin/env python3
"""TMTC commander for the FSFW Example"""
from common_tmtc.tmtcc import tmtcc_post_args, tmtcc_pre_args
def main():
hook_obj = tmtcc_pre_args()
tmtcc_post_args(hook_obj=hook_obj, use_gui=True, args=None)
if __name__ == "__main__":
main()