Skip to content
Snippets Groups Projects
Commit bdbd030b authored by Robin Mueller's avatar Robin Mueller
Browse files

Merge branch 'master' into mueller_branch

parents 8289e36d a8203774
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,10 @@ from tc.obsw_pus_tc_packer import TcQueueT, PusTelecommand
def pack_service5_test_into(tc_queue: TcQueueT) -> TcQueueT:
tc_queue.appendleft(("print", "Testing Service 5"))
# invalid subservice
tc_queue.appendleft(("print", "Testing Service 5: Invalid subservice"))
command = PusTelecommand(service=5, subservice=1, ssc=500)
tc_queue.appendleft(command.pack_command_tuple())
# disable events
tc_queue.appendleft(("print", "Testing Service 5: Disable event"))
command = PusTelecommand(service=5, subservice=6, ssc=500)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment