From 280c72439effa1b4290dc500dade2c62a9d6e3f7 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 15 May 2023 14:18:18 +0200 Subject: [PATCH] bugfix MPSoC command --- eive_tmtc/tmtc/payload/ploc_mpsoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eive_tmtc/tmtc/payload/ploc_mpsoc.py b/eive_tmtc/tmtc/payload/ploc_mpsoc.py index 14081a8..f9df4d4 100644 --- a/eive_tmtc/tmtc/payload/ploc_mpsoc.py +++ b/eive_tmtc/tmtc/payload/ploc_mpsoc.py @@ -371,7 +371,7 @@ def prepare_flash_read_cmd(object_id: bytes) -> bytearray: mpsoc_file = get_mpsoc_file(MPSOC_READ_FILE_DICT) obc_file = get_obc_file(OBC_READ_FILE_DICT) cmd = prepare_flash_base_cmd( - mpsoc_file, obc_file, ActionId.TC_FLASH_READ_FULL_FILE, object_id + obc_file, mpsoc_file, ActionId.TC_FLASH_READ_FULL_FILE, object_id ) file_size = get_mpsoc_file_size() cmd.extend(struct.pack("!I", file_size))