regenerate objects list
Some checks failed
fsfw/fsfw example hosted/pipeline/head There was a failure building this commit

This commit is contained in:
2022-05-20 09:17:18 +02:00
parent 8570c9e327
commit 4173a62229
12 changed files with 330 additions and 99 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
import time
# from objects.objects import parse_objects
from objects.objects import parse_objects
from events.event_parser import parse_events
# from returnvalues.returnvalues_parser import parse_returnvalues
from fsfwgen.core import (
@ -22,7 +22,7 @@ def main():
if args.type == "objects":
LOGGER.info(f"Generating objects data..")
time.sleep(0.05)
# parse_objects()
parse_objects()
elif args.type == "events":
LOGGER.info(f"Generating event data")
time.sleep(0.05)
@ -35,7 +35,7 @@ def main():
LOGGER.info("Generating all data")
parse_objects()
parse_events()
parse_returnvalues()
# parse_returnvalues()
if __name__ == "__main__":