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

added setting off to srv8 test

parent 4a37bedb
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,14 @@ def pack_service8_test_into(tc_queue: Deque, called_externally: bool = False) ->
direct_command = object_id + action_id
command = PusTelecommand(service=8, subservice=128, ssc=840, app_data=direct_command)
tc_queue.appendleft(command.pack_command_tuple())
# set mode off
tc_queue.appendleft(("print", "Testing Service 8: Set Off Mode"))
mode_data = pack_mode_data(object_id, 0, 0)
command = PusTelecommand(service=200, subservice=1, ssc=800, app_data=mode_data)
tc_queue.appendleft(command.pack_command_tuple())
tc_queue.appendleft(("wait", 2))
if called_externally is False:
tc_queue.appendleft(("export", "log/tmtc_log_service8.txt"))
return tc_queue
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