bump deps, improvement for TMTC script

This commit is contained in:
Robin Müller 2022-08-17 17:16:50 +02:00
parent c403abfa9f
commit 3b32fa79c1
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
3 changed files with 6 additions and 3 deletions

2
fsfw

@ -1 +1 @@
Subproject commit 2e52d7a31dff327b30570bcef859f1d0efc87501
Subproject commit 6930656d4e5bc52c429bfdd9669e052cf18aaec1

@ -1 +1 @@
Subproject commit e432443aeb80ec7532a293ac7acc72547f1a2970
Subproject commit 4a54bffa6b54447a426e88d11dcfe1c3cdcccc10

View File

@ -50,7 +50,10 @@ def main():
elif state.request == BackendRequest.DELAY_LISTENER:
time.sleep(0.8)
elif state.request == BackendRequest.DELAY_CUSTOM:
time.sleep(state.next_delay.total_seconds())
if state.next_delay.total_seconds() < 0.5:
time.sleep(state.next_delay.total_seconds())
else:
time.sleep(0.5)
elif state.request == BackendRequest.CALL_NEXT:
pass
except KeyboardInterrupt: