eive-tmtc/pus_tc/devs/ploc_memory_dumper.py

38 lines
1.2 KiB
Python
Raw Normal View History

2021-08-31 11:17:01 +02:00
# -*- coding: utf-8 -*-
"""
@file ploc_memory_dumper.py
@brief This file implements the command to dump memory sectors of the PLOC. Memories of the PLOC which can be dumped
are one MRAM, two flash memories and the SRAM.
@author J. Meier
@date 31.08.2021
"""
import struct
2021-10-01 10:55:56 +02:00
from spacepackets.ecss.tc import PusTelecommand
2022-07-04 17:59:09 +02:00
from tmtccmd.tc import QueueHelper
2022-07-08 16:25:46 +02:00
from tmtccmd.util import ObjectIdU32
2021-08-31 11:17:01 +02:00
class ActionIds:
DUMP_MRAM = 1
2022-07-05 02:12:54 +02:00
def pack_ploc_memory_dumper_cmd(object_id: ObjectIdU32, q: QueueHelper, op_code: str):
2022-07-04 17:59:09 +02:00
q.add_log_cmd(
f"Testing PLOC memory dumper with object id: {object_id.as_hex_string}"
2021-08-31 11:17:01 +02:00
)
if op_code == "0":
2022-07-04 17:59:09 +02:00
q.add_log_cmd("PLOC Supervisor: Dump MRAM")
command = pack_mram_dump_cmd(object_id.as_bytes)
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
2021-08-31 11:17:01 +02:00
2022-07-04 17:59:09 +02:00
def pack_mram_dump_cmd(object_id: bytes) -> bytearray:
2021-08-31 11:17:01 +02:00
start = int(input("Start address: 0x"), 16)
end = int(input("End address: 0x"), 16)
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", ActionIds.DUMP_MRAM)
command = command + struct.pack("!I", start)
command = command + struct.pack("!I", end)
2022-07-04 17:59:09 +02:00
return bytearray(command)