2021-07-11 14:29:11 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
@file ploc_supervisor.py
|
|
|
|
@brief Tests for commanding the supervisor of the PLOC.
|
|
|
|
The supervisor is programmed by Thales.
|
|
|
|
@author J. Meier
|
|
|
|
@date 10.07.2021
|
|
|
|
"""
|
2022-08-18 15:46:41 +02:00
|
|
|
import enum
|
2021-07-11 14:29:11 +02:00
|
|
|
import struct
|
|
|
|
|
2022-11-29 16:53:29 +01:00
|
|
|
from eive_tmtc.config.object_ids import PLOC_SUPV_ID, get_object_ids
|
|
|
|
from eive_tmtc.config.definitions import CustomServiceList
|
|
|
|
from eive_tmtc.pus_tm.defs import PrintWrapper
|
2022-03-04 11:02:10 +01:00
|
|
|
from spacepackets.ecss.tc import PusTelecommand
|
2022-08-18 15:46:41 +02:00
|
|
|
from tmtccmd.tc.pus_3_fsfw_hk import generate_one_hk_command, make_sid
|
2022-08-18 14:08:05 +02:00
|
|
|
from tmtccmd.config import TmtcDefinitionWrapper
|
|
|
|
from tmtccmd.config.tmtc import tmtc_definitions_provider, OpCodeEntry
|
2022-04-05 00:51:52 +02:00
|
|
|
from tmtccmd.logging import get_console_logger
|
2022-08-18 14:08:05 +02:00
|
|
|
from tmtccmd.tc import service_provider
|
|
|
|
from tmtccmd.tc.decorator import ServiceProviderParams
|
2023-01-18 11:32:21 +01:00
|
|
|
from tmtccmd.pus.s200_fsfw_mode import pack_mode_data, Mode
|
|
|
|
from tmtccmd.pus.s8_fsfw_funccmd import create_action_cmd
|
2022-08-19 14:48:10 +02:00
|
|
|
from tmtccmd.util.tmtc_printer import FsfwTmTcPrinter
|
2022-11-29 16:53:29 +01:00
|
|
|
from eive_tmtc.utility.input_helper import InputHelper
|
2021-08-02 15:28:34 +02:00
|
|
|
|
|
|
|
LOGGER = get_console_logger()
|
2021-07-11 14:29:11 +02:00
|
|
|
|
2021-07-28 19:35:46 +02:00
|
|
|
latchup_id_dict = {
|
2022-01-18 14:03:56 +01:00
|
|
|
"0": "0.85V",
|
|
|
|
"1": "1.8V",
|
|
|
|
"2": "MISC",
|
|
|
|
"3": "3.3V",
|
|
|
|
"4": "NVM_4XO",
|
|
|
|
"5": "MISSION",
|
|
|
|
"6": "SAFECOTS",
|
|
|
|
}
|
|
|
|
|
2022-11-17 17:34:46 +01:00
|
|
|
HARDCODED = "0"
|
2022-04-11 16:53:20 +02:00
|
|
|
MANUAL_INPUT = "1"
|
2022-11-28 11:20:00 +01:00
|
|
|
HARDCODED_FILE = "/home/rmueller/EIVE/mpsoc_boot.bin"
|
2022-04-11 16:53:20 +02:00
|
|
|
|
|
|
|
update_file_dict = {
|
2022-11-17 17:34:46 +01:00
|
|
|
HARDCODED: ["hardcoded", ""],
|
2022-04-11 16:53:20 +02:00
|
|
|
MANUAL_INPUT: ["manual input", ""],
|
|
|
|
"2": ["/mnt/sd0/ploc/supervisor/update.bin", "/mnt/sd0/ploc/supervisor/update.bin"],
|
2022-05-03 18:36:28 +02:00
|
|
|
"3": [
|
|
|
|
"/mnt/sd0/ploc/supervisor/update-large.bin",
|
|
|
|
"/mnt/sd0/ploc/supervisor/update-large.bin",
|
|
|
|
],
|
|
|
|
"4": [
|
|
|
|
"/mnt/sd0/ploc/supervisor/update-small.bin",
|
|
|
|
"/mnt/sd0/ploc/supervisor/update-small.bin",
|
|
|
|
],
|
2022-05-13 18:40:24 +02:00
|
|
|
"5": [
|
|
|
|
"/mnt/sd0/ploc/supervisor/mpsoc-uart-working.bin",
|
|
|
|
"/mnt/sd0/ploc/supervisor/mpsoc-uart-working.bin",
|
|
|
|
],
|
2022-04-11 16:53:20 +02:00
|
|
|
}
|
|
|
|
|
2022-04-14 07:53:18 +02:00
|
|
|
event_buffer_path_dict = {
|
|
|
|
MANUAL_INPUT: ["manual input", ""],
|
|
|
|
"2": ["/mnt/sd0/ploc/supervisor", "/mnt/sd0/ploc/supervisor"],
|
|
|
|
}
|
|
|
|
|
2021-07-11 14:29:11 +02:00
|
|
|
|
2022-12-23 10:17:44 +01:00
|
|
|
FACTORY_RESET_OPS = {
|
2022-12-23 10:12:30 +01:00
|
|
|
0x00: "CLEAR_MRAM_EVENT_BUF",
|
|
|
|
0x01: "CLEAR_MRAM_ADC_BUF",
|
|
|
|
0x02: "FACTORY_DEFAULT_MRAM_SYS_CFG",
|
|
|
|
0x03: "FACTORY_DEFAULT_MRAM_DBG_CFG",
|
|
|
|
0x04: "FACTORY_DEFAULT_BOOTMAN_CFG",
|
|
|
|
0x05: "FACTORY_DEFAULT_DATA_LOGGER",
|
|
|
|
0x06: "DATA_LOGGER_OP_DATA_TO_ZERO",
|
|
|
|
0x07: "FACTORY_DEFAULT_MRAM_LATCHUP_MON",
|
|
|
|
0x08: "FACTORY_DEFAULT_ADC_MON_CFG",
|
|
|
|
0x09: "FACTORY_DEFAULT_WATCHDOG_MON_CFG",
|
|
|
|
0x0A: "FACTORY_DEFAULT_HK_CFG",
|
|
|
|
0x0B: "FACTORY_DEFAULT_MEM_MAN_CFG",
|
|
|
|
0x10: "REDWIRE_TASK_1",
|
|
|
|
0x11: "REDWIRE_TASK_2",
|
|
|
|
0x12: "REDWIRE_TASK_3",
|
|
|
|
}
|
2022-12-23 10:17:44 +01:00
|
|
|
|
|
|
|
|
2023-01-16 14:13:06 +01:00
|
|
|
class SupvActionId:
|
2021-07-11 14:29:11 +02:00
|
|
|
HK_REPORT = 1
|
2021-07-23 13:40:27 +02:00
|
|
|
START_MPSOC = 3
|
|
|
|
SHUTWOWN_MPSOC = 4
|
|
|
|
SEL_MPSOC_BOOT_IMAGE = 5
|
|
|
|
SET_BOOT_TIMEOUT = 6
|
|
|
|
SET_MAX_RESTART_TRIES = 7
|
|
|
|
RESET_MPSOC = 8
|
|
|
|
SET_TIME_REF = 9
|
|
|
|
DISABLE_HK = 10
|
2021-07-25 17:56:36 +02:00
|
|
|
GET_BOOT_STATUS_REPORT = 11
|
2021-07-26 16:29:54 +02:00
|
|
|
UPDATE_AVAILABLE = 12
|
2021-07-28 19:35:46 +02:00
|
|
|
ENABLE_LATCHUP_ALERT = 15
|
|
|
|
DISABLE_LATCHUP_ALERT = 16
|
|
|
|
SET_ALERT_LIMIT = 18
|
|
|
|
SET_ADC_SWEEP_PERIOD = 20
|
|
|
|
SET_ADC_ENABLED_CHANNELS = 21
|
|
|
|
SET_ADC_WINDOW_AND_STRIDE = 22
|
|
|
|
SET_ADC_THRESHOLD = 23
|
|
|
|
GET_LATCHUP_STATUS_REPORT = 24
|
|
|
|
COPY_ADC_DATA_TO_MRAM = 25
|
|
|
|
SELECT_NVM = 27
|
|
|
|
RUN_AUTO_EM_TESTS = 28
|
|
|
|
WIPE_MRAM = 29
|
|
|
|
DUMP_MRAM = 30
|
|
|
|
SET_GPIO = 34
|
|
|
|
READ_GPIO = 35
|
|
|
|
RESTART_SUPERVISOR = 36
|
2022-04-14 07:53:18 +02:00
|
|
|
LOGGING_REQUEST_COUNTERS = 38
|
2022-12-23 10:12:30 +01:00
|
|
|
FACTORY_RESET = 39
|
2022-04-11 16:53:20 +02:00
|
|
|
START_MPSOC_QUIET = 45
|
|
|
|
SET_SHUTDOWN_TIMEOUT = 46
|
|
|
|
FACTORY_FLASH = 47
|
|
|
|
PERFORM_UPDATE = 48
|
|
|
|
TERMINATE_SUPV_HELPER = 49
|
|
|
|
ENABLE_AUTO_TM = 50
|
|
|
|
DISABLE_AUTO_TM = 51
|
2022-04-14 07:53:18 +02:00
|
|
|
LOGGING_REQUEST_EVENT_BUFFERS = 54
|
|
|
|
LOGGING_CLEAR_COUNTERS = 55
|
|
|
|
LOGGING_SET_TOPIC = 56
|
2022-04-21 16:30:42 +02:00
|
|
|
REQUEST_ADC_REPORT = 57
|
2022-04-28 11:29:26 +02:00
|
|
|
RESET_PL = 58
|
2022-05-05 19:20:59 +02:00
|
|
|
ENABLE_NVMS = 59
|
2022-05-23 16:38:44 +02:00
|
|
|
CONTINUE_UPDATE = 60
|
2022-08-22 11:47:12 +02:00
|
|
|
MEM_CHECK = 61
|
2021-07-11 14:29:11 +02:00
|
|
|
|
|
|
|
|
2022-08-18 15:46:41 +02:00
|
|
|
class SetIds:
|
|
|
|
HK_REPORT = 102
|
2022-08-22 17:09:03 +02:00
|
|
|
BOOT_STATUS_REPORT = 103
|
2021-07-11 14:29:11 +02:00
|
|
|
|
|
|
|
|
2022-08-18 14:08:05 +02:00
|
|
|
class OpCodes:
|
|
|
|
OFF = ["0", "off"]
|
|
|
|
ON = ["1", "on"]
|
|
|
|
NORMAL = ["2", "nml"]
|
2022-08-24 16:18:20 +02:00
|
|
|
HK_TO_OBC = ["3", "hk_to_obc"]
|
|
|
|
REQUEST_HK = ["4", "req_hk"]
|
|
|
|
START_MPSOC = ["5", "start_mpsoc"]
|
|
|
|
SHUTDOWN_MPSOC = ["6", "stop_mpsoc"]
|
|
|
|
SEL_NVM = ["7", "sel_nvm"]
|
2022-11-17 15:48:22 +01:00
|
|
|
SET_TIME_REF = ["set_time_ref"]
|
2022-11-17 16:51:12 +01:00
|
|
|
FACTORY_FLASH = ["factory_flash"]
|
2022-08-24 16:18:20 +02:00
|
|
|
REQ_BOOT_STATUS_REPORT = ["13", "boot_report"]
|
|
|
|
START_UPDATE = ["42", "start_update"]
|
2022-08-21 00:22:41 +02:00
|
|
|
PERFORM_UPDATE = ["update"]
|
2022-12-23 10:12:30 +01:00
|
|
|
FACTORY_RESET = ["factory_reset"]
|
2022-08-24 16:18:20 +02:00
|
|
|
MEM_CHECK = ["mem_check"]
|
2022-08-18 15:46:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Info(str, enum.Enum):
|
|
|
|
value: str
|
|
|
|
OFF = "Switch Off"
|
|
|
|
ON = "Switch On"
|
|
|
|
NML = "Switch Normal"
|
|
|
|
HK_TO_OBC = "Request HK from PLOC SUPV"
|
|
|
|
REQUEST_HK = "Request HK set from PLOC Handler"
|
2022-11-17 15:48:22 +01:00
|
|
|
SET_TIME_REF = "Set time reference"
|
2022-11-17 16:51:12 +01:00
|
|
|
FACTORY_FLASH = "Factory Flash Mode"
|
2022-08-24 16:18:20 +02:00
|
|
|
PERFORM_UPDATE = "Start or continue MPSoC SW update at starting bytes"
|
|
|
|
START_UPDATE = "Start new MPSoC SW update"
|
2022-12-23 10:12:30 +01:00
|
|
|
FACTORY_RESET = "Factory Reset of loggers"
|
2022-08-23 18:24:48 +02:00
|
|
|
REQ_BOOT_STATUS_REPORT = "Request boot status report and HK"
|
2022-08-22 11:47:12 +02:00
|
|
|
MEM_CHECK = "Memory Check"
|
2022-08-24 16:18:20 +02:00
|
|
|
SEL_NVM = "Select NVM"
|
2022-08-18 14:08:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
@tmtc_definitions_provider
|
|
|
|
def add_ploc_supv_cmds(defs: TmtcDefinitionWrapper):
|
2022-08-18 15:52:06 +02:00
|
|
|
|
2022-08-18 14:08:05 +02:00
|
|
|
oce = OpCodeEntry()
|
2022-08-18 15:46:41 +02:00
|
|
|
oce.add(OpCodes.OFF, Info.OFF)
|
|
|
|
oce.add(OpCodes.ON, Info.ON)
|
|
|
|
oce.add(OpCodes.NORMAL, Info.NML)
|
|
|
|
oce.add(OpCodes.HK_TO_OBC, Info.HK_TO_OBC)
|
|
|
|
oce.add(OpCodes.REQUEST_HK, Info.REQUEST_HK)
|
2022-08-18 14:59:19 +02:00
|
|
|
oce.add(OpCodes.START_MPSOC, "PLOC Supervisor: Start MPSoC")
|
2022-08-24 16:18:20 +02:00
|
|
|
oce.add(OpCodes.SHUTDOWN_MPSOC, "PLOC Supervisor: Shutdown MPSoC")
|
|
|
|
oce.add(OpCodes.SEL_NVM, Info.SEL_NVM)
|
2022-11-17 15:48:22 +01:00
|
|
|
oce.add(OpCodes.SET_TIME_REF, Info.SET_TIME_REF)
|
2022-12-23 10:12:30 +01:00
|
|
|
oce.add(OpCodes.FACTORY_RESET, Info.FACTORY_RESET)
|
2022-08-18 14:08:05 +02:00
|
|
|
oce.add("8", "PLOC Supervisor: Set max restart tries")
|
|
|
|
oce.add("9", "PLOC Supervisor: Reset MPSoC")
|
|
|
|
oce.add("11", "PLOC Supervisor: Set boot timeout")
|
|
|
|
oce.add("12", "PLOC Supervisor: Disable Hk")
|
2022-08-22 17:09:03 +02:00
|
|
|
oce.add(OpCodes.REQ_BOOT_STATUS_REPORT, Info.REQ_BOOT_STATUS_REPORT)
|
2022-08-18 14:08:05 +02:00
|
|
|
oce.add("17", "PLOC Supervisor: Enable latchup alert")
|
|
|
|
oce.add("18", "PLOC Supervisor: Disable latchup alert")
|
|
|
|
oce.add("20", "PLOC Supervisor: Set alert limit")
|
|
|
|
oce.add("23", "PLOC Supervisor: Set ADC enabled channels")
|
|
|
|
oce.add("24", "PLOC Supervisor: Set ADC window and stride")
|
|
|
|
oce.add("25", "PLOC Supervisor: Set ADC threshold")
|
|
|
|
oce.add("26", "PLOC Supervisor: Request latchup status report")
|
|
|
|
oce.add("27", "PLOC Supervisor: Copy ADC data to MRAM")
|
|
|
|
oce.add("30", "PLOC Supervisor: Run auto EM tests")
|
|
|
|
oce.add("31", "PLOC Supervisor: MRAM Wipe")
|
|
|
|
oce.add("35", "PLOC Supervisor: Set GPIO")
|
|
|
|
oce.add("36", "PLOC Supervisor: Read GPIO")
|
|
|
|
oce.add("37", "PLOC Supervisor: Restart supervisor")
|
2022-08-24 16:18:20 +02:00
|
|
|
oce.add(OpCodes.PERFORM_UPDATE, Info.PERFORM_UPDATE)
|
|
|
|
oce.add(OpCodes.START_UPDATE, Info.START_UPDATE)
|
2022-08-18 14:08:05 +02:00
|
|
|
oce.add("43", "PLOC Supervisor: Terminate supervisor process")
|
|
|
|
oce.add("44", "PLOC Supervisor: Start MPSoC quiet")
|
|
|
|
oce.add("45", "PLOC Supervisor: Set shutdown timeout")
|
2022-11-17 16:51:12 +01:00
|
|
|
oce.add(OpCodes.FACTORY_FLASH, Info.FACTORY_FLASH)
|
2022-08-18 14:08:05 +02:00
|
|
|
oce.add("47", "PLOC Supervisor: Enable auto TM")
|
|
|
|
oce.add("48", "PLOC Supervisor: Disable auto TM")
|
|
|
|
oce.add("51", "PLOC Supervisor: Logging request event buffers")
|
|
|
|
oce.add("52", "PLOC Supervisor: Logging clear counters")
|
|
|
|
oce.add("53", "PLOC Supervisor: Logging set topic")
|
|
|
|
oce.add("54", "PLOC Supervisor: Logging request counters")
|
|
|
|
oce.add("55", "PLOC Supervisor: Request ADC Report")
|
|
|
|
oce.add("56", "PLOC Supervisor: Reset PL")
|
|
|
|
oce.add("57", "PLOC Supervisor: Enable NVMs")
|
|
|
|
oce.add("58", "PLOC Supervisor: Continue update")
|
2022-08-22 11:47:12 +02:00
|
|
|
oce.add(OpCodes.MEM_CHECK, Info.MEM_CHECK)
|
2022-08-18 14:08:05 +02:00
|
|
|
defs.add_service(CustomServiceList.PLOC_SUPV.value, "PLOC Supervisor", oce)
|
|
|
|
|
|
|
|
|
|
|
|
@service_provider(CustomServiceList.PLOC_SUPV)
|
|
|
|
def pack_ploc_supv_commands(p: ServiceProviderParams):
|
|
|
|
q = p.queue_helper
|
|
|
|
op_code = p.op_code
|
|
|
|
object_id = get_object_ids().get(PLOC_SUPV_ID)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_log_cmd(f"Testing PLOC Supervisor with object id: {object_id.as_hex_string}")
|
|
|
|
obyt = object_id.as_bytes
|
2022-08-18 15:46:41 +02:00
|
|
|
prefix = "PLOC Supervisor"
|
2022-08-18 14:08:05 +02:00
|
|
|
if op_code in OpCodes.OFF:
|
2022-08-18 15:46:41 +02:00
|
|
|
q.add_log_cmd(f"{prefix}: {Info.OFF}")
|
2023-01-16 15:05:33 +01:00
|
|
|
command = pack_mode_data(object_id.as_bytes, Mode.OFF, 0)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=200, subservice=1, app_data=command))
|
2022-08-18 14:08:05 +02:00
|
|
|
if op_code in OpCodes.ON:
|
2022-08-18 15:46:41 +02:00
|
|
|
q.add_log_cmd(f"{prefix}: {Info.ON}")
|
2023-01-16 15:05:33 +01:00
|
|
|
command = pack_mode_data(object_id.as_bytes, Mode.ON, 0)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=200, subservice=1, app_data=command))
|
2022-08-18 14:08:05 +02:00
|
|
|
if op_code in OpCodes.NORMAL:
|
2022-08-18 15:46:41 +02:00
|
|
|
q.add_log_cmd(f"{prefix}: {Info.NML}")
|
2023-01-16 15:05:33 +01:00
|
|
|
command = pack_mode_data(object_id.as_bytes, Mode.NORMAL, 0)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=200, subservice=1, app_data=command))
|
2022-08-18 15:46:41 +02:00
|
|
|
if op_code in OpCodes.HK_TO_OBC:
|
|
|
|
q.add_log_cmd(f"{prefix}: {Info.HK_TO_OBC}")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = obyt + struct.pack("!I", SupvActionId.HK_REPORT)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-18 15:46:41 +02:00
|
|
|
if op_code in OpCodes.REQUEST_HK:
|
|
|
|
q.add_log_cmd(f"{prefix}: {Info.REQUEST_HK}")
|
|
|
|
sid = make_sid(object_id.as_bytes, SetIds.HK_REPORT)
|
|
|
|
cmd = generate_one_hk_command(sid)
|
|
|
|
q.add_pus_tc(cmd)
|
2022-08-22 17:09:03 +02:00
|
|
|
elif op_code in OpCodes.START_MPSOC:
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_log_cmd("PLOC Supervisor: Start MPSoC")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = obyt + struct.pack("!I", SupvActionId.START_MPSOC)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-24 16:18:20 +02:00
|
|
|
if op_code in OpCodes.SHUTDOWN_MPSOC:
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_log_cmd("PLOC Supervisor: Shutdown MPSoC")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.SHUTWOWN_MPSOC)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-24 16:18:20 +02:00
|
|
|
if op_code in OpCodes.SEL_NVM:
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_log_cmd("PLOC Supervisor: Select MPSoC boot image")
|
2022-04-27 16:08:51 +02:00
|
|
|
mem = int(input("MEM (NVM0 - 0 or NVM1 - 1): "))
|
|
|
|
bp0 = int(input("BP0 (0 or 1): "))
|
|
|
|
bp1 = int(input("BP1 (0 or 1): "))
|
|
|
|
bp2 = int(input("BP2 (0 or 1): "))
|
2022-07-04 15:22:53 +02:00
|
|
|
command = pack_sel_boot_image_cmd(object_id.as_bytes, mem, bp0, bp1, bp2)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-12-23 10:12:30 +01:00
|
|
|
if op_code in OpCodes.FACTORY_RESET:
|
|
|
|
q.add_log_cmd(f"{prefix}: {Info.FACTORY_RESET}")
|
2022-12-23 10:17:44 +01:00
|
|
|
key = -1
|
|
|
|
while True:
|
|
|
|
print("Please select the key for a factory reset operation")
|
2022-12-23 11:00:19 +01:00
|
|
|
for key, val in FACTORY_RESET_OPS.items():
|
2022-12-23 10:17:44 +01:00
|
|
|
print(f"{key}: {val}")
|
|
|
|
key = int(input("Key Select: "))
|
|
|
|
if key not in FACTORY_RESET_OPS:
|
|
|
|
print("Key invalid!")
|
|
|
|
break
|
2023-01-10 10:27:00 +01:00
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2023-01-10 10:27:00 +01:00
|
|
|
object_id=PLOC_SUPV_ID,
|
2023-01-16 14:13:06 +01:00
|
|
|
action_id=SupvActionId.FACTORY_RESET,
|
2023-01-10 10:27:00 +01:00
|
|
|
user_data=bytes([key]),
|
|
|
|
)
|
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
if op_code == "8":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set max restart tries")
|
2022-05-03 19:09:23 +02:00
|
|
|
restart_tries = int(input("Specify maximum restart tries: "))
|
2022-01-18 14:03:56 +01:00
|
|
|
command = (
|
2022-07-04 15:22:53 +02:00
|
|
|
object_id.as_bytes
|
2023-01-16 14:13:06 +01:00
|
|
|
+ struct.pack("!I", SupvActionId.SET_MAX_RESTART_TRIES)
|
2022-01-18 14:03:56 +01:00
|
|
|
+ struct.pack("!B", restart_tries)
|
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "9":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Reset MPSoC")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.RESET_MPSOC)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-11-17 15:48:22 +01:00
|
|
|
if op_code in OpCodes.SET_TIME_REF:
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_log_cmd("PLOC Supervisor: Set time reference")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.SET_TIME_REF)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "11":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set boot timeout")
|
2022-05-03 19:09:23 +02:00
|
|
|
boot_timeout = int(input("Specify boot timeout [ms]: "))
|
2022-01-18 14:03:56 +01:00
|
|
|
command = (
|
2022-07-04 15:22:53 +02:00
|
|
|
object_id.as_bytes
|
2023-01-16 14:13:06 +01:00
|
|
|
+ struct.pack("!I", SupvActionId.SET_BOOT_TIMEOUT)
|
2022-01-18 14:03:56 +01:00
|
|
|
+ struct.pack("!I", boot_timeout)
|
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "12":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Disable HK")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.DISABLE_HK)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-22 17:09:03 +02:00
|
|
|
if op_code in OpCodes.REQ_BOOT_STATUS_REPORT:
|
2022-08-24 16:18:20 +02:00
|
|
|
q.add_log_cmd(f"{prefix}: {Info.REQ_BOOT_STATUS_REPORT}")
|
2022-07-04 15:22:53 +02:00
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.GET_BOOT_STATUS_REPORT
|
2022-01-18 14:03:56 +01:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-22 17:09:03 +02:00
|
|
|
q.add_wait_seconds(2.0)
|
|
|
|
sid = make_sid(object_id.as_bytes, SetIds.BOOT_STATUS_REPORT)
|
|
|
|
req_hk = generate_one_hk_command(sid)
|
|
|
|
q.add_pus_tc(req_hk)
|
2022-07-04 15:22:53 +02:00
|
|
|
if op_code == "17":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Enable latchup alert")
|
|
|
|
command = pack_lachtup_alert_cmd(object_id.as_bytes, True)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "18":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Disable latchup alert")
|
|
|
|
command = pack_lachtup_alert_cmd(object_id.as_bytes, False)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "20":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set alert limit")
|
|
|
|
command = pack_set_alert_limit_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "23":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set ADC enabled channels")
|
|
|
|
command = pack_set_adc_enabled_channels_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "24":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set ADC window and stride")
|
|
|
|
command = pack_set_adc_window_and_stride_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "25":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set ADC threshold")
|
|
|
|
command = pack_set_adc_threshold_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "26":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Request latchup status report")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.GET_LATCHUP_STATUS_REPORT
|
2022-01-18 14:03:56 +01:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "27":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Copy ADC data to MRAM")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.COPY_ADC_DATA_TO_MRAM
|
2022-01-18 14:03:56 +01:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "30":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Run auto EM tests")
|
|
|
|
command = pack_auto_em_tests_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "31":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Wipe MRAM")
|
|
|
|
command = pack_mram_wipe_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "35":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set GPIO command")
|
|
|
|
command = pack_set_gpio_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "36":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Read GPIO command")
|
|
|
|
command = pack_read_gpio_cmd(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "37":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Restart supervisor")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.RESTART_SUPERVISOR
|
2022-01-18 14:03:56 +01:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-24 16:18:20 +02:00
|
|
|
if op_code in OpCodes.START_UPDATE:
|
|
|
|
q.add_log_cmd("PLOC Supversior: Start new MPSoC SW update")
|
|
|
|
command = pack_update_command(object_id.as_bytes, True)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-21 00:22:41 +02:00
|
|
|
if op_code in OpCodes.PERFORM_UPDATE:
|
2022-08-24 16:18:20 +02:00
|
|
|
q.add_log_cmd("PLOC Supervisor: Perform MPSoC SW update")
|
|
|
|
command = pack_update_command(object_id.as_bytes, False)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "43":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Terminate supervisor process")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.TERMINATE_SUPV_HELPER
|
2022-04-11 16:53:20 +02:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "44":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Start MPSoC quiet")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.START_MPSOC_QUIET)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "45":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Set shutdown timeout")
|
|
|
|
command = pack_set_shutdown_timeout_command(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-11-17 16:51:12 +01:00
|
|
|
if op_code in OpCodes.FACTORY_FLASH:
|
2022-11-21 13:03:42 +01:00
|
|
|
q.add_log_cmd(f"{prefix}: {Info.FACTORY_FLASH}")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.FACTORY_FLASH)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "47":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Enable auto TM")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.ENABLE_AUTO_TM)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "48":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Disable auto TM")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.DISABLE_AUTO_TM)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "51":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Logging request event buffers")
|
|
|
|
command = pack_logging_buffer_request(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "52":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Logging clear counters")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.LOGGING_CLEAR_COUNTERS
|
2022-05-03 18:36:28 +02:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "53":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Logging set topic")
|
|
|
|
command = pack_logging_set_topic(object_id.as_bytes)
|
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "54":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Logging request counters")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.LOGGING_REQUEST_COUNTERS
|
2022-04-14 07:53:18 +02:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "55":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Request ADC report")
|
|
|
|
command = object_id.as_bytes + struct.pack(
|
2023-01-16 14:13:06 +01:00
|
|
|
"!I", SupvActionId.REQUEST_ADC_REPORT
|
2022-05-03 18:36:28 +02:00
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "56":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Reset PL")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.RESET_PL)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "57":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Enable NVMs")
|
2022-05-05 19:20:59 +02:00
|
|
|
nvm01 = int(input("Enable (1) or disable(0) NVM 0 and 1: "))
|
|
|
|
nvm3 = int(input("Enable (1) or disable(0) NVM 3: "))
|
2022-05-17 17:21:03 +02:00
|
|
|
command = (
|
2022-07-04 15:22:53 +02:00
|
|
|
object_id.as_bytes
|
2023-01-16 14:13:06 +01:00
|
|
|
+ struct.pack("!I", SupvActionId.ENABLE_NVMS)
|
2022-05-17 17:21:03 +02:00
|
|
|
+ struct.pack("B", nvm01)
|
|
|
|
+ struct.pack("B", nvm3)
|
|
|
|
)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
|
|
|
if op_code == "58":
|
|
|
|
q.add_log_cmd("PLOC Supervisor: Continue update")
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id.as_bytes + struct.pack("!I", SupvActionId.CONTINUE_UPDATE)
|
2022-07-04 15:22:53 +02:00
|
|
|
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=command))
|
2022-08-22 11:47:12 +02:00
|
|
|
if op_code in OpCodes.MEM_CHECK:
|
|
|
|
custom_data = bytearray()
|
2022-08-22 13:41:07 +02:00
|
|
|
update_file = get_update_file()
|
2022-08-22 11:47:12 +02:00
|
|
|
memory_id = int(input("Specify memory ID: "))
|
|
|
|
start_address = int(input("Specify start address: 0x"), 16)
|
2022-08-22 13:41:07 +02:00
|
|
|
custom_data.extend(update_file.encode("utf-8"))
|
|
|
|
custom_data.append(0)
|
2022-08-22 11:47:12 +02:00
|
|
|
custom_data.extend(struct.pack("!B", memory_id))
|
|
|
|
custom_data.extend(struct.pack("!I", start_address))
|
|
|
|
q.add_log_cmd(
|
2022-08-22 13:41:07 +02:00
|
|
|
f"{prefix}: {Info.MEM_CHECK} for file {update_file} at memory ID {memory_id} at start "
|
|
|
|
f"address {start_address}"
|
2022-08-22 11:47:12 +02:00
|
|
|
)
|
2023-01-18 11:32:21 +01:00
|
|
|
command = create_action_cmd(
|
2023-01-16 14:13:06 +01:00
|
|
|
object_id.as_bytes, SupvActionId.MEM_CHECK, custom_data
|
2022-08-22 11:47:12 +02:00
|
|
|
)
|
|
|
|
q.add_pus_tc(command)
|
2021-07-23 13:40:27 +02:00
|
|
|
|
|
|
|
|
2022-01-18 14:03:56 +01:00
|
|
|
def pack_sel_boot_image_cmd(
|
2022-07-04 15:22:53 +02:00
|
|
|
object_id: bytes, mem: int, bp0: int, bp1: int, bp2: int
|
2022-01-18 14:03:56 +01:00
|
|
|
) -> bytearray:
|
|
|
|
"""This function can be used to generate the command to select the image from which the MPSoC will boot
|
2021-07-23 13:40:27 +02:00
|
|
|
@param object_id The object id of the PLOC supervisor handler.
|
|
|
|
@param mem The memory from which the MPSoC shall boot (NVM0 - 0, NVM1 - 1)
|
|
|
|
@param bp0 Partition pin 0
|
|
|
|
@param bp1 Partition pin 1
|
|
|
|
@param bp2 Partition pin 2
|
|
|
|
"""
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SEL_MPSOC_BOOT_IMAGE)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", mem)
|
|
|
|
command = command + struct.pack("!B", bp0)
|
|
|
|
command = command + struct.pack("!B", bp1)
|
|
|
|
command = command + struct.pack("!B", bp2)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-26 16:29:54 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_update_available_cmd(object_id: bytes) -> bytearray:
|
2021-07-26 16:29:54 +02:00
|
|
|
"""
|
|
|
|
@brief This function packs the udpate availabe command.
|
|
|
|
@param object_id The object id of the PLOC supervisor handler.
|
|
|
|
"""
|
|
|
|
image_select = 1
|
|
|
|
image_partition = 0
|
|
|
|
image_size = 222
|
|
|
|
image_crc = 0x0
|
|
|
|
number_of_packets = 150
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.UPDATE_AVAILABLE)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", image_select)
|
|
|
|
command = command + struct.pack("!B", image_partition)
|
|
|
|
command = command + struct.pack("!I", image_size)
|
|
|
|
command = command + struct.pack("!I", image_crc)
|
|
|
|
command = command + struct.pack("!I", number_of_packets)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-26 16:29:54 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_lachtup_alert_cmd(object_id: bytes, state: bool) -> bytearray:
|
2021-07-28 19:35:46 +02:00
|
|
|
"""
|
|
|
|
@brief This function packs the command to enable or disable a certain latchup alerts.
|
|
|
|
@param object_id The object id of the PLOC supervisor handler.
|
|
|
|
@param state True - enable latchup alert, False - disable latchup alert
|
|
|
|
"""
|
|
|
|
latchup_id = get_latchup_id()
|
|
|
|
command = bytearray()
|
|
|
|
if state:
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.ENABLE_LATCHUP_ALERT)
|
2021-07-28 19:35:46 +02:00
|
|
|
else:
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.DISABLE_LATCHUP_ALERT)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", latchup_id)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_latchup_id() -> int:
|
|
|
|
key_column_width = 10
|
|
|
|
description_column_width = 50
|
|
|
|
separator_width = key_column_width + description_column_width + 3
|
|
|
|
separator_string = separator_width * "-"
|
|
|
|
key_string = "Latchup ID".ljust(key_column_width)
|
|
|
|
description_string = "Description".ljust(description_column_width)
|
|
|
|
print(f"{key_string} | {description_string}")
|
|
|
|
print(separator_string)
|
|
|
|
for key in latchup_id_dict:
|
|
|
|
key_string = key.ljust(key_column_width)
|
|
|
|
description_string = latchup_id_dict[key].ljust(description_column_width)
|
|
|
|
print(f"{key_string} | {description_string}")
|
2022-04-29 18:21:18 +02:00
|
|
|
return int(input("Specify latchup ID: "))
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_alert_limit_cmd(object_id: bytes) -> bytearray:
|
2021-07-28 19:35:46 +02:00
|
|
|
"""
|
|
|
|
@brief This function packs the command to set the limit of a latchup alert.
|
|
|
|
@param object_id The object id of the PLOC supervisor handler.
|
|
|
|
"""
|
|
|
|
latchup_id = get_latchup_id()
|
2022-05-03 19:09:23 +02:00
|
|
|
dutycycle = int(input("Specify dutycycle: "))
|
2021-07-28 19:35:46 +02:00
|
|
|
command = bytearray()
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SET_ALERT_LIMIT)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", latchup_id)
|
|
|
|
command = command + struct.pack("!I", dutycycle)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_adc_enabled_channels_cmd(object_id: bytes) -> bytearray:
|
2021-07-28 19:35:46 +02:00
|
|
|
"""
|
|
|
|
@brief This function packs the command to enable or disable channels of the ADC.
|
|
|
|
@param object_id The object id of the PLOC supervisor handler.
|
|
|
|
"""
|
2022-04-22 14:21:08 +02:00
|
|
|
ch = int(input("Specify ch: 0x"), 16)
|
2023-01-16 14:13:06 +01:00
|
|
|
cmd = object_id + struct.pack("!I", SupvActionId.SET_ADC_ENABLED_CHANNELS)
|
2022-05-03 19:12:37 +02:00
|
|
|
cmd = cmd + struct.pack("!H", ch)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(cmd)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_adc_window_and_stride_cmd(object_id: bytes) -> bytearray:
|
2022-05-03 19:09:23 +02:00
|
|
|
window_size = int(input("Specify window size: "))
|
|
|
|
striding_step_size = int(input("Specify striding step size: "))
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SET_ADC_WINDOW_AND_STRIDE)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!H", window_size)
|
|
|
|
command = command + struct.pack("!H", striding_step_size)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_adc_threshold_cmd(object_id: bytes) -> bytearray:
|
2022-04-22 18:02:49 +02:00
|
|
|
threshold = int(input("Specify threshold: "))
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SET_ADC_THRESHOLD)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!I", threshold)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_select_nvm_cmd(object_id: bytes) -> bytearray:
|
2022-05-03 19:09:23 +02:00
|
|
|
mem = int(input("Specify NVM (0 - NVM0, 1 - MVM1): "))
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SELECT_NVM)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", mem)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_auto_em_tests_cmd(object_id: bytes) -> bytearray:
|
2022-05-03 19:09:23 +02:00
|
|
|
test = int(input("Specify test (1 - complete, 2 - short): "))
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.RUN_AUTO_EM_TESTS)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", test)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-28 19:35:46 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_mram_wipe_cmd(object_id: bytes) -> bytearray:
|
2021-07-28 19:35:46 +02:00
|
|
|
start = int(input("Start address: 0x"), 16)
|
|
|
|
stop = int(input("Stop address: 0x"), 16)
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.WIPE_MRAM)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!I", start)
|
|
|
|
command = command + struct.pack("!I", stop)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-07-29 08:58:12 +02:00
|
|
|
|
2021-08-02 11:27:34 +02:00
|
|
|
|
2022-08-24 16:18:20 +02:00
|
|
|
def pack_update_command(object_id: bytes, new_update: bool) -> bytearray:
|
2022-04-11 16:53:20 +02:00
|
|
|
command = bytearray()
|
|
|
|
memory_id = int(input("Specify memory ID: "))
|
|
|
|
start_address = int(input("Specify start address: 0x"), 16)
|
|
|
|
update_file = get_update_file()
|
2022-08-24 16:18:20 +02:00
|
|
|
if new_update:
|
2022-08-21 00:22:41 +02:00
|
|
|
init_bytes_written = 0
|
2022-08-24 16:18:20 +02:00
|
|
|
init_seq_count = 1
|
|
|
|
del_mem = True
|
2022-08-24 12:06:49 +02:00
|
|
|
else:
|
2022-08-24 16:18:20 +02:00
|
|
|
init_bytes_written = input("Specify bytes to start from [0 default]: ")
|
|
|
|
if init_bytes_written == "":
|
|
|
|
init_bytes_written = 0
|
|
|
|
init_bytes_written = int(init_bytes_written)
|
|
|
|
init_seq_count = input("Specify initial sequence count [1 default]: ")
|
|
|
|
if init_seq_count == "":
|
|
|
|
init_seq_count = 1
|
|
|
|
init_seq_count = int(init_seq_count)
|
|
|
|
del_mem = input("Delete memory? [y/n, y default]: ")
|
|
|
|
if del_mem.lower() in ["y", "1"]:
|
|
|
|
del_mem = 1
|
|
|
|
elif del_mem.lower() in ["n", "0"]:
|
|
|
|
del_mem = 0
|
|
|
|
else:
|
|
|
|
raise ValueError("Invalid input, use y or n")
|
2022-04-11 16:53:20 +02:00
|
|
|
command += object_id
|
2023-01-16 14:13:06 +01:00
|
|
|
command += struct.pack("!I", SupvActionId.PERFORM_UPDATE)
|
2022-05-03 18:36:28 +02:00
|
|
|
command += bytearray(update_file, "utf-8")
|
2022-04-11 16:53:20 +02:00
|
|
|
# Adding null terminator
|
2022-05-03 18:36:28 +02:00
|
|
|
command += struct.pack("!B", 0)
|
|
|
|
command += struct.pack("!B", memory_id)
|
|
|
|
command += struct.pack("!I", start_address)
|
2022-08-21 00:22:41 +02:00
|
|
|
command.extend(struct.pack("!I", init_bytes_written))
|
|
|
|
command.extend(struct.pack("!H", init_seq_count))
|
2022-08-24 12:06:49 +02:00
|
|
|
command.append(del_mem)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2022-04-11 16:53:20 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_shutdown_timeout_command(object_id: bytes) -> bytearray:
|
2022-04-11 16:53:20 +02:00
|
|
|
command = bytearray()
|
|
|
|
command += object_id
|
2023-01-16 14:13:06 +01:00
|
|
|
command += struct.pack("!I", SupvActionId.SET_SHUTDOWN_TIMEOUT)
|
2022-04-11 16:53:20 +02:00
|
|
|
timeout = int(input("Specify shutdown timeout (ms): "))
|
2022-05-03 18:36:28 +02:00
|
|
|
command += struct.pack("!I", timeout)
|
2022-04-11 16:53:20 +02:00
|
|
|
return command
|
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_logging_buffer_request(object_id: bytes) -> bytearray:
|
2022-04-14 07:53:18 +02:00
|
|
|
command = bytearray()
|
|
|
|
command += object_id
|
2023-01-16 14:13:06 +01:00
|
|
|
command += struct.pack("!I", SupvActionId.LOGGING_REQUEST_EVENT_BUFFERS)
|
2022-04-14 07:53:18 +02:00
|
|
|
path = get_event_buffer_path()
|
2022-05-03 18:36:28 +02:00
|
|
|
command += bytearray(path, "utf-8")
|
2022-04-14 07:53:18 +02:00
|
|
|
return command
|
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_set_gpio_cmd(object_id: bytes) -> bytearray:
|
2022-04-29 23:35:34 +02:00
|
|
|
port = int(input("Specify port: 0x"), 16)
|
2022-04-22 18:02:49 +02:00
|
|
|
pin = int(input("Specify pin: 0x"), 16)
|
|
|
|
val = int(input("Specify val: 0x"), 16)
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.SET_GPIO)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", port)
|
|
|
|
command = command + struct.pack("!B", pin)
|
|
|
|
command = command + struct.pack("!B", val)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2021-08-02 15:28:34 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_read_gpio_cmd(object_id: bytes) -> bytearray:
|
2022-04-22 18:02:49 +02:00
|
|
|
port = int(input("Specify port: 0x"), 16)
|
|
|
|
pin = int(input("Specify pin: 0x"), 16)
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.READ_GPIO)
|
2022-01-18 14:03:56 +01:00
|
|
|
command = command + struct.pack("!B", port)
|
|
|
|
command = command + struct.pack("!B", pin)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2022-04-11 16:53:20 +02:00
|
|
|
|
|
|
|
|
2022-07-04 15:22:53 +02:00
|
|
|
def pack_logging_set_topic(object_id: bytes) -> bytearray:
|
2023-01-16 14:13:06 +01:00
|
|
|
command = object_id + struct.pack("!I", SupvActionId.LOGGING_SET_TOPIC)
|
2022-04-14 07:53:18 +02:00
|
|
|
tpc = int(input("Specify logging topic: "))
|
2022-05-03 18:36:28 +02:00
|
|
|
command += struct.pack("!B", tpc)
|
2022-07-04 15:22:53 +02:00
|
|
|
return bytearray(command)
|
2022-04-14 07:53:18 +02:00
|
|
|
|
|
|
|
|
2022-04-11 16:53:20 +02:00
|
|
|
def get_update_file() -> str:
|
|
|
|
LOGGER.info("Specify update file ")
|
|
|
|
input_helper = InputHelper(update_file_dict)
|
|
|
|
key = input_helper.get_key()
|
2022-11-17 17:34:46 +01:00
|
|
|
if key == HARDCODED:
|
2022-11-24 11:57:30 +01:00
|
|
|
file = HARDCODED_FILE
|
2022-11-17 17:34:46 +01:00
|
|
|
elif key == MANUAL_INPUT:
|
2022-04-14 07:53:18 +02:00
|
|
|
file = input("Ploc Supervisor: Specify absolute name of update file: ")
|
2022-04-11 16:53:20 +02:00
|
|
|
else:
|
|
|
|
file = update_file_dict[key][1]
|
|
|
|
return file
|
2022-04-14 07:53:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_event_buffer_path() -> str:
|
|
|
|
LOGGER.info("Specify path where to store event buffer file ")
|
|
|
|
input_helper = InputHelper(event_buffer_path_dict)
|
|
|
|
key = input_helper.get_key()
|
|
|
|
if key == MANUAL_INPUT:
|
|
|
|
file = input("Ploc Supervisor: Specify path: ")
|
|
|
|
else:
|
|
|
|
file = event_buffer_path_dict[key][1]
|
|
|
|
return file
|
2022-08-19 14:48:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
def handle_supv_hk_data(set_id: int, hk_data: bytes, printer: FsfwTmTcPrinter):
|
2022-08-22 17:09:03 +02:00
|
|
|
pw = PrintWrapper(printer)
|
|
|
|
current_idx = 0
|
|
|
|
if set_id == SetIds.HK_REPORT:
|
|
|
|
pass
|
|
|
|
elif set_id == SetIds.BOOT_STATUS_REPORT:
|
|
|
|
fmt_str = "!BBIIBBBBBB"
|
|
|
|
inc_len = struct.calcsize(fmt_str)
|
|
|
|
(
|
|
|
|
soc_state,
|
|
|
|
power_cycles,
|
|
|
|
boot_after_ms,
|
|
|
|
boot_timeout_ms,
|
|
|
|
active_nvm,
|
|
|
|
bp_0_state,
|
|
|
|
bp_1_state,
|
|
|
|
bp_2_state,
|
|
|
|
boot_state,
|
2022-08-24 16:18:20 +02:00
|
|
|
boot_cycles,
|
|
|
|
) = struct.unpack(fmt_str, hk_data[0 : 0 + inc_len])
|
2022-08-22 17:09:03 +02:00
|
|
|
current_idx += inc_len
|
|
|
|
pw.dlog(
|
|
|
|
f"SoC state (0:off, 1:booting, 2:update, 3:operating, 4:shutdown, 5:reset): {soc_state}"
|
|
|
|
)
|
|
|
|
pw.dlog(f"Power Cycles {power_cycles}")
|
|
|
|
pw.dlog(f"Boot after {boot_after_ms} ms | Boot timeout {boot_timeout_ms} ms")
|
|
|
|
pw.dlog(f"Active NVM: {active_nvm}")
|
2022-08-24 16:18:20 +02:00
|
|
|
pw.dlog(
|
|
|
|
f"BP0 State {bp_0_state} | BP1 State {bp_1_state} | BP2 State {bp_2_state}"
|
|
|
|
)
|
2022-08-22 17:09:03 +02:00
|
|
|
pw.dlog(f"Boot State {boot_state} | Boot Cycles {boot_cycles}")
|
|
|
|
pw.printer.print_validity_buffer(hk_data[current_idx:], 10)
|
2022-08-20 01:59:29 +02:00
|
|
|
else:
|
|
|
|
pw.dlog(f"PLOC SUPV: HK handling not implemented for set ID {set_id}")
|
|
|
|
pw.dlog(f"Raw Data: 0x[{hk_data.hex(sep=',')}]")
|