From c691dc651adc368dca123340d004531ab1536636 Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 27 Mar 2022 12:57:07 +0200 Subject: [PATCH] changed sequence count --- pus_tc/devs/ploc_mpsoc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pus_tc/devs/ploc_mpsoc.py b/pus_tc/devs/ploc_mpsoc.py index 3433e35..fa61abf 100644 --- a/pus_tc/devs/ploc_mpsoc.py +++ b/pus_tc/devs/ploc_mpsoc.py @@ -128,12 +128,12 @@ def pack_ploc_mpsoc_commands( tc_queue.appendleft((QueueCommands.PRINT, "PLOC MPSoC: Read DEADBEEF address")) command = object_id + struct.pack('!I', CommandIds.TC_MEM_READ) + struct.pack("!I", MemAddresses.DEADBEEF) + \ struct.pack('!H', num_words) - command = PusTelecommand(service=8, subservice=128, ssc=28, app_data=command) + command = PusTelecommand(service=8, subservice=128, ssc=29, app_data=command) tc_queue.appendleft(command.pack_command_tuple()) elif op_code == "11": tc_queue.appendleft((QueueCommands.PRINT, "PLOC MPSoC: Tc mode replay")) command = object_id + struct.pack('!I', CommandIds.TC_MODE_REPLAY) - command = PusTelecommand(service=8, subservice=128, ssc=29, app_data=command) + command = PusTelecommand(service=8, subservice=128, ssc=30, app_data=command) tc_queue.appendleft(command.pack_command_tuple()) return tc_queue