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

added invalid subservice to test

parent 77de0d30
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,13 @@
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