2021-08-03 15:28:28 +02:00
|
|
|
import enum
|
2023-02-01 11:17:04 +01:00
|
|
|
import logging
|
2023-04-16 02:56:14 +02:00
|
|
|
import os
|
2023-01-11 14:19:47 +01:00
|
|
|
import struct
|
2023-04-16 02:56:14 +02:00
|
|
|
from pathlib import Path
|
2023-01-11 14:19:47 +01:00
|
|
|
|
|
|
|
from eive_tmtc.pus_tm.defs import PrintWrapper
|
2021-08-03 15:28:28 +02:00
|
|
|
|
2022-11-29 16:53:29 +01:00
|
|
|
from eive_tmtc.config.definitions import CustomServiceList
|
2022-09-26 22:25:47 +02:00
|
|
|
from spacepackets.ecss import PusTelecommand
|
2022-08-12 10:18:21 +02:00
|
|
|
from tmtccmd.config import TmtcDefinitionWrapper
|
2022-07-04 17:59:09 +02:00
|
|
|
|
2022-08-08 16:32:18 +02:00
|
|
|
from tmtccmd.tc import DefaultPusQueueHelper
|
2023-01-18 11:32:21 +01:00
|
|
|
from tmtccmd.pus.s8_fsfw_funccmd import create_action_cmd
|
2022-05-05 16:15:53 +02:00
|
|
|
from tmtccmd.tc.pus_3_fsfw_hk import make_sid, generate_one_hk_command
|
2023-04-12 18:51:38 +02:00
|
|
|
from tmtccmd.tc.pus_20_fsfw_param import (
|
|
|
|
create_scalar_u8_parameter,
|
|
|
|
create_load_param_cmd,
|
|
|
|
)
|
2022-08-12 10:18:21 +02:00
|
|
|
from tmtccmd.config.tmtc import OpCodeEntry, tmtc_definitions_provider
|
2022-11-29 16:53:29 +01:00
|
|
|
from eive_tmtc.config.object_ids import CORE_CONTROLLER_ID
|
2023-05-25 11:31:06 +02:00
|
|
|
from tmtccmd.fsfw.tmtc_printer import FsfwTmTcPrinter
|
2022-07-05 02:12:54 +02:00
|
|
|
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2021-08-03 15:28:28 +02:00
|
|
|
|
|
|
|
|
2023-01-16 14:18:15 +01:00
|
|
|
class ActionId(enum.IntEnum):
|
2023-02-08 11:21:00 +01:00
|
|
|
ANNOUNCE_VERSION = 1
|
2023-02-08 11:51:55 +01:00
|
|
|
ANNOUNCE_CURRENT_IMAGE = 2
|
2023-03-11 15:23:02 +01:00
|
|
|
ANNOUNCE_BOOT_COUNTS = 3
|
2022-02-24 10:56:36 +01:00
|
|
|
SWITCH_REBOOT_FILE_HANDLING = 5
|
2022-09-26 22:25:47 +02:00
|
|
|
RESET_REBOOT_COUNTER = 6
|
|
|
|
SWITCH_IMG_LOCK = 7
|
|
|
|
SET_MAX_REBOOT_CNT = 8
|
|
|
|
UPDATE_OBSW_FROM_SD_0 = 10
|
|
|
|
UPDATE_OBSW_FROM_SD_1 = 11
|
|
|
|
UPDATE_OBSW_FROM_TMP = 12
|
2022-09-27 12:05:36 +02:00
|
|
|
SWITCH_TO_SD_0 = 16
|
|
|
|
SWITCH_TO_SD_1 = 17
|
|
|
|
SWITCH_TO_BOTH_SD_CARDS = 18
|
2022-05-24 01:13:21 +02:00
|
|
|
XSC_REBOOT = 32
|
|
|
|
FULL_REBOOT = 34
|
2023-04-14 00:06:22 +02:00
|
|
|
EXECUTE_SHELL_CMD_BLOCKING = 40
|
2023-04-14 00:21:01 +02:00
|
|
|
EXECUTE_SHELL_CMD_NON_BLOCKING = 41
|
2023-04-14 00:06:22 +02:00
|
|
|
SYSTEMCTL_CMD_EXECUTOR = 42
|
2023-04-15 20:51:08 +02:00
|
|
|
LIST_DIR_INTO_FILE = 50
|
|
|
|
LIST_DIR_DUMP_DIRECTLY = 51
|
|
|
|
CP_HELPER = 52
|
|
|
|
MV_HELPER = 53
|
|
|
|
RM_HELPER = 54
|
2023-04-15 21:53:11 +02:00
|
|
|
MKDIR_HELPER = 55
|
2021-08-03 15:28:28 +02:00
|
|
|
|
|
|
|
|
2023-04-12 18:51:38 +02:00
|
|
|
class ParamId(enum.IntEnum):
|
|
|
|
PREF_SD = 0
|
|
|
|
|
|
|
|
|
2023-01-16 14:18:15 +01:00
|
|
|
class SetId(enum.IntEnum):
|
2022-03-14 10:03:50 +01:00
|
|
|
HK = 5
|
2022-03-13 21:35:12 +01:00
|
|
|
|
|
|
|
|
2023-01-16 14:18:15 +01:00
|
|
|
class OpCode:
|
2023-02-08 11:51:55 +01:00
|
|
|
ANNOUNCE_VERSION = "announce_version"
|
|
|
|
ANNOUNCE_CURRENT_IMAGE = "announce_current_image"
|
2023-03-11 15:23:02 +01:00
|
|
|
ANNOUNCE_BOOT_COUNTS = "announce_boot_counts"
|
2023-04-14 00:21:01 +02:00
|
|
|
EXECUTE_SHELL_CMD_BLOCKING = "exec_cmd_blocking"
|
|
|
|
EXECUTE_SHELL_CMD_NON_BLOCKING = "exec_cmd_non_blocking"
|
2023-04-14 00:06:22 +02:00
|
|
|
SYSTEMCTL_CMD_EXECUTOR = "systemctl_cmd"
|
2023-04-15 20:51:08 +02:00
|
|
|
LIST_DIR_INTO_FILE = "list_dir_into_file"
|
|
|
|
LIST_DIR_DUMP_DIRECTLY = "list_dir_dump_directly"
|
|
|
|
CP_HELPER = "cp_helper"
|
|
|
|
MV_HELPER = "mv_helper"
|
|
|
|
RM_HELPER = "rm_helper"
|
2023-04-15 21:53:11 +02:00
|
|
|
MKDIR_HELPER = "mkdir_helper"
|
2023-04-12 18:51:38 +02:00
|
|
|
SET_PREF_SD = "set_pref_sd"
|
2023-03-11 15:23:02 +01:00
|
|
|
REBOOT_XSC = ["reboot_xsc"]
|
|
|
|
XSC_REBOOT_SELF = ["reboot_self"]
|
|
|
|
XSC_REBOOT_0_0 = ["reboot_00"]
|
|
|
|
XSC_REBOOT_0_1 = ["reboot_01"]
|
|
|
|
XSC_REBOOT_1_0 = ["reboot_10"]
|
|
|
|
XSC_REBOOT_1_1 = ["reboot_11"]
|
|
|
|
REBOOT_FULL = ["reboot_regular"]
|
|
|
|
GET_HK = ["get_hk"]
|
2022-09-26 22:25:47 +02:00
|
|
|
OBSW_UPDATE_FROM_SD_0 = ["obsw_update_sd0"]
|
|
|
|
OBSW_UPDATE_FROM_SD_1 = ["obsw_update_sd1"]
|
|
|
|
OBSW_UPDATE_FROM_TMP = ["obsw_update_tmp"]
|
2022-09-27 12:05:36 +02:00
|
|
|
SWITCH_TO_SD_0 = ["switch_to_sd_0"]
|
|
|
|
SWITCH_TO_SD_1 = ["switch_to_sd_1"]
|
|
|
|
SWITCH_TO_BOTH_SD_CARDS = ["switch_to_both_sd_cards"]
|
2023-03-11 15:23:02 +01:00
|
|
|
ENABLE_REBOOT_FILE_HANDLING = ["rbh_off"]
|
|
|
|
DISABLE_REBOOT_FILE_HANDLING = ["rbh_on"]
|
|
|
|
RESET_ALL_REBOOT_COUNTERS = ["rbh_reset_a"]
|
|
|
|
RESET_REBOOT_COUNTER_00 = ["rbh_reset_00"]
|
|
|
|
RESET_REBOOT_COUNTER_01 = ["rbh_reset_01"]
|
|
|
|
RESET_REBOOT_COUNTER_10 = ["rbh_reset_10"]
|
|
|
|
RESET_REBOOT_COUNTER_11 = ["rbh_reset_11"]
|
|
|
|
SET_MAX_REBOOT_CNT = ["rbh_max_cnt"]
|
2022-05-24 01:13:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Info:
|
2023-02-08 11:21:00 +01:00
|
|
|
ANNOUNCE_VERSION = "Announce version"
|
|
|
|
ANNOUNCE_CURRENT_IMAGE = "Announce current image"
|
2023-03-11 15:23:02 +01:00
|
|
|
ANNOUNCE_BOOT_COUNTS = "Announce boot counts"
|
2023-04-14 00:06:22 +02:00
|
|
|
SYSTEMCTL_CMD_EXECUTOR = "Perform systemctl command"
|
2023-04-14 00:21:01 +02:00
|
|
|
EXECUTE_SHELL_CMD_BLOCKING = "Execute shell command blocking"
|
|
|
|
EXECUTE_SHELL_CMD_NON_BLOCKING = "Execute shell command non-blocking"
|
2023-04-12 18:51:38 +02:00
|
|
|
SET_PREF_SD = "Set preferred SD card"
|
2022-05-24 01:13:21 +02:00
|
|
|
REBOOT_XSC = "XSC reboot with prompt"
|
|
|
|
REBOOT_FULL = "Full regular reboot"
|
2022-09-26 22:25:47 +02:00
|
|
|
OBSW_UPDATE_FROM_SD_0 = "Update OBSW from SD Card 0"
|
|
|
|
OBSW_UPDATE_FROM_SD_1 = "Update OBSW from SD Card 1"
|
|
|
|
OBSW_UPDATE_FROM_TMP = "Update OBSW from tmp folder"
|
2022-09-27 12:05:36 +02:00
|
|
|
SWITCH_TO_SD_0 = "Switch to SD card 0"
|
|
|
|
SWITCH_TO_SD_1 = "Switch to SD card 1"
|
|
|
|
SWITCH_TO_BOTH_SD_CARDS = "Switch to both SD cards with specified active card"
|
2023-04-15 20:51:08 +02:00
|
|
|
LIST_DIR_INTO_FILE = "List directory, dump output into file"
|
|
|
|
LIST_DIR_DUMP_DIRECTLY = "List directory, dump content directly"
|
|
|
|
CP_HELPER = "Filesystem Copy Helper"
|
|
|
|
MV_HELPER = "Filesystem Move Helper"
|
|
|
|
RM_HELPER = "Filesystem Removal Helper"
|
2023-04-15 21:53:11 +02:00
|
|
|
MKDIR_HELPER = "Filesystem Directory Creation Helper"
|
2021-08-03 15:28:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Chip(enum.IntEnum):
|
|
|
|
CHIP_0 = 0
|
|
|
|
CHIP_1 = 1
|
|
|
|
NONE = 2
|
|
|
|
|
|
|
|
|
|
|
|
class Copy(enum.IntEnum):
|
|
|
|
COPY_0_NOM = 0
|
|
|
|
COPY_1_GOLD = 1
|
|
|
|
NONE = 2
|
|
|
|
|
|
|
|
|
2023-04-14 00:06:22 +02:00
|
|
|
class SystemctlCmd(enum.IntEnum):
|
|
|
|
START = 0
|
|
|
|
STOP = 1
|
|
|
|
RESTART = 2
|
|
|
|
|
|
|
|
|
2022-08-12 10:18:21 +02:00
|
|
|
@tmtc_definitions_provider
|
|
|
|
def add_core_controller_definitions(defs: TmtcDefinitionWrapper):
|
2022-07-05 02:12:54 +02:00
|
|
|
oce = OpCodeEntry()
|
2023-02-08 11:21:00 +01:00
|
|
|
oce.add(keys=OpCode.ANNOUNCE_VERSION, info=Info.ANNOUNCE_VERSION)
|
|
|
|
oce.add(keys=OpCode.ANNOUNCE_CURRENT_IMAGE, info=Info.ANNOUNCE_CURRENT_IMAGE)
|
2023-03-11 15:23:02 +01:00
|
|
|
oce.add(keys=OpCode.ANNOUNCE_BOOT_COUNTS, info=Info.ANNOUNCE_BOOT_COUNTS)
|
2023-01-16 14:18:15 +01:00
|
|
|
oce.add(keys=OpCode.REBOOT_XSC, info=Info.REBOOT_XSC)
|
|
|
|
oce.add(keys=OpCode.REBOOT_XSC, info=Info.REBOOT_XSC)
|
|
|
|
oce.add(keys=OpCode.REBOOT_FULL, info=Info.REBOOT_FULL)
|
|
|
|
oce.add(keys=OpCode.XSC_REBOOT_SELF, info="Reboot Self")
|
|
|
|
oce.add(keys=OpCode.XSC_REBOOT_0_0, info="Reboot 0 0")
|
|
|
|
oce.add(keys=OpCode.XSC_REBOOT_0_1, info="Reboot 0 1")
|
|
|
|
oce.add(keys=OpCode.XSC_REBOOT_1_0, info="Reboot 1 0")
|
|
|
|
oce.add(keys=OpCode.XSC_REBOOT_1_1, info="Reboot 1 1")
|
2023-04-12 18:51:38 +02:00
|
|
|
oce.add(keys=OpCode.SET_PREF_SD, info=Info.SET_PREF_SD)
|
2023-01-16 14:18:15 +01:00
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_TMP, info=Info.OBSW_UPDATE_FROM_TMP)
|
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_SD_0, info=Info.OBSW_UPDATE_FROM_SD_0)
|
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_SD_1, info=Info.OBSW_UPDATE_FROM_SD_1)
|
2023-04-14 00:06:22 +02:00
|
|
|
oce.add(keys=OpCode.SYSTEMCTL_CMD_EXECUTOR, info=Info.SYSTEMCTL_CMD_EXECUTOR)
|
2023-04-14 19:21:51 +02:00
|
|
|
oce.add(
|
|
|
|
keys=OpCode.EXECUTE_SHELL_CMD_BLOCKING, info=Info.EXECUTE_SHELL_CMD_BLOCKING
|
|
|
|
)
|
|
|
|
oce.add(
|
|
|
|
keys=OpCode.EXECUTE_SHELL_CMD_NON_BLOCKING,
|
|
|
|
info=Info.EXECUTE_SHELL_CMD_NON_BLOCKING,
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.GET_HK,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Request housekeeping set",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.ENABLE_REBOOT_FILE_HANDLING,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Enable reboot file handling",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.DISABLE_REBOOT_FILE_HANDLING,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Disable reboot file handling",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.RESET_ALL_REBOOT_COUNTERS,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Reset all reboot counters",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.RESET_REBOOT_COUNTER_00,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Reset reboot counter 0 0",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.RESET_REBOOT_COUNTER_01,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Reset reboot counter 0 1",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.RESET_REBOOT_COUNTER_10,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Reset reboot counter 1 0",
|
|
|
|
)
|
2022-07-05 02:12:54 +02:00
|
|
|
oce.add(
|
2023-01-16 14:18:15 +01:00
|
|
|
keys=OpCode.RESET_REBOOT_COUNTER_11,
|
2022-05-24 01:13:21 +02:00
|
|
|
info="Reset reboot counter 1 1",
|
|
|
|
)
|
2023-01-16 14:18:15 +01:00
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_SD_0, info=Info.OBSW_UPDATE_FROM_SD_0)
|
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_SD_1, info=Info.OBSW_UPDATE_FROM_SD_1)
|
|
|
|
oce.add(keys=OpCode.OBSW_UPDATE_FROM_TMP, info=Info.OBSW_UPDATE_FROM_TMP)
|
|
|
|
oce.add(keys=OpCode.SWITCH_TO_SD_0, info=Info.SWITCH_TO_SD_0)
|
|
|
|
oce.add(keys=OpCode.SWITCH_TO_SD_1, info=Info.SWITCH_TO_SD_1)
|
|
|
|
oce.add(keys=OpCode.SWITCH_TO_BOTH_SD_CARDS, info=Info.SWITCH_TO_BOTH_SD_CARDS)
|
2023-04-15 20:51:08 +02:00
|
|
|
oce.add(keys=OpCode.LIST_DIR_INTO_FILE, info=Info.LIST_DIR_INTO_FILE)
|
|
|
|
oce.add(keys=OpCode.LIST_DIR_DUMP_DIRECTLY, info=Info.LIST_DIR_DUMP_DIRECTLY)
|
|
|
|
oce.add(keys=OpCode.MV_HELPER, info=Info.MV_HELPER)
|
|
|
|
oce.add(keys=OpCode.CP_HELPER, info=Info.CP_HELPER)
|
|
|
|
oce.add(keys=OpCode.RM_HELPER, info=Info.RM_HELPER)
|
2023-04-15 21:53:11 +02:00
|
|
|
oce.add(keys=OpCode.MKDIR_HELPER, info=Info.MKDIR_HELPER)
|
2022-08-08 16:47:41 +02:00
|
|
|
defs.add_service(CustomServiceList.CORE.value, "Core Controller", oce)
|
2022-05-24 01:13:21 +02:00
|
|
|
|
|
|
|
|
2023-06-19 17:16:00 +02:00
|
|
|
def pack_core_commands( # noqa C901
|
|
|
|
q: DefaultPusQueueHelper, op_code: str
|
|
|
|
): # noqa: C901 , complexity okay here
|
2023-02-08 11:21:00 +01:00
|
|
|
if op_code == OpCode.ANNOUNCE_VERSION:
|
|
|
|
q.add_log_cmd(f"{Info.ANNOUNCE_VERSION}")
|
|
|
|
q.add_pus_tc(create_action_cmd(CORE_CONTROLLER_ID, ActionId.ANNOUNCE_VERSION))
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code == OpCode.ANNOUNCE_CURRENT_IMAGE:
|
2023-02-08 11:21:00 +01:00
|
|
|
q.add_log_cmd(f"{Info.ANNOUNCE_CURRENT_IMAGE}")
|
2023-02-08 11:51:55 +01:00
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.ANNOUNCE_CURRENT_IMAGE)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code == OpCode.ANNOUNCE_BOOT_COUNTS:
|
|
|
|
q.add_log_cmd(f"{Info.ANNOUNCE_BOOT_COUNTS}")
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.ANNOUNCE_BOOT_COUNTS)
|
|
|
|
)
|
|
|
|
elif op_code in OpCode.REBOOT_XSC:
|
2021-08-03 15:28:28 +02:00
|
|
|
reboot_self, chip_select, copy_select = determine_reboot_params()
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(
|
2022-07-04 17:59:09 +02:00
|
|
|
q=q,
|
2022-01-18 14:03:56 +01:00
|
|
|
reboot_self=reboot_self,
|
|
|
|
chip=chip_select,
|
|
|
|
copy=copy_select,
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.REBOOT_FULL:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd(f"Core Command: {Info.REBOOT_FULL}")
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=ActionId.FULL_REBOOT
|
2022-07-04 17:59:09 +02:00
|
|
|
)
|
2022-05-24 17:24:09 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.XSC_REBOOT_SELF:
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(q=q, reboot_self=True)
|
2023-04-14 00:06:22 +02:00
|
|
|
elif op_code == OpCode.SYSTEMCTL_CMD_EXECUTOR:
|
|
|
|
print("systemctl command types: ")
|
2023-04-14 00:08:28 +02:00
|
|
|
for entry in SystemctlCmd:
|
|
|
|
print(f"{entry}: {entry.name}")
|
2023-04-14 19:21:51 +02:00
|
|
|
systemctl_cmd = SystemctlCmd(
|
|
|
|
int(input("Specify systemctl command type by key: "))
|
|
|
|
)
|
2023-04-14 00:06:22 +02:00
|
|
|
unit_name = input("Specify unit name: ")
|
2023-05-19 11:01:06 +02:00
|
|
|
q.add_pus_tc(create_systemctl_cmd(systemctl_cmd, unit_name))
|
2023-04-14 00:21:01 +02:00
|
|
|
elif op_code == OpCode.EXECUTE_SHELL_CMD_BLOCKING:
|
2023-04-14 00:06:22 +02:00
|
|
|
custom_cmd = input("Please specify command to execute: ")
|
2023-04-14 19:21:51 +02:00
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(
|
|
|
|
object_id=CORE_CONTROLLER_ID,
|
|
|
|
action_id=ActionId.EXECUTE_SHELL_CMD_BLOCKING,
|
|
|
|
user_data=custom_cmd.encode(),
|
|
|
|
)
|
|
|
|
)
|
2023-04-14 00:21:01 +02:00
|
|
|
elif op_code == OpCode.EXECUTE_SHELL_CMD_NON_BLOCKING:
|
|
|
|
custom_cmd = input("Please specify command to execute: ")
|
2023-04-14 19:21:51 +02:00
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(
|
|
|
|
object_id=CORE_CONTROLLER_ID,
|
|
|
|
action_id=ActionId.EXECUTE_SHELL_CMD_NON_BLOCKING,
|
|
|
|
user_data=custom_cmd.encode(),
|
|
|
|
)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.XSC_REBOOT_0_0:
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(
|
2022-07-04 17:59:09 +02:00
|
|
|
q=q, reboot_self=False, chip=Chip.CHIP_0, copy=Copy.COPY_0_NOM
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.XSC_REBOOT_0_1:
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(
|
2022-07-04 17:59:09 +02:00
|
|
|
q=q,
|
2022-01-18 14:03:56 +01:00
|
|
|
reboot_self=False,
|
|
|
|
chip=Chip.CHIP_0,
|
|
|
|
copy=Copy.COPY_1_GOLD,
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.XSC_REBOOT_1_0:
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(
|
2022-07-04 17:59:09 +02:00
|
|
|
q=q, reboot_self=False, chip=Chip.CHIP_1, copy=Copy.COPY_0_NOM
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.XSC_REBOOT_1_1:
|
2023-01-11 14:23:03 +01:00
|
|
|
add_xsc_reboot_cmd(
|
2022-07-04 17:59:09 +02:00
|
|
|
q=q,
|
2022-01-18 14:03:56 +01:00
|
|
|
reboot_self=False,
|
|
|
|
chip=Chip.CHIP_1,
|
|
|
|
copy=Copy.COPY_1_GOLD,
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.DISABLE_REBOOT_FILE_HANDLING:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd("Disabling reboot file handling")
|
2022-09-26 22:25:47 +02:00
|
|
|
user_data = bytearray([0])
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2022-09-26 22:25:47 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID,
|
2023-01-16 14:18:15 +01:00
|
|
|
action_id=ActionId.SWITCH_REBOOT_FILE_HANDLING,
|
2022-09-26 22:25:47 +02:00
|
|
|
user_data=user_data,
|
|
|
|
)
|
2022-02-24 10:56:36 +01:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.ENABLE_REBOOT_FILE_HANDLING:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd("Enabling reboot file handling")
|
2022-09-26 22:25:47 +02:00
|
|
|
user_data = bytearray([1])
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2022-09-26 22:25:47 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID,
|
2023-01-16 14:18:15 +01:00
|
|
|
action_id=ActionId.SWITCH_REBOOT_FILE_HANDLING,
|
2022-09-26 22:25:47 +02:00
|
|
|
user_data=user_data,
|
|
|
|
)
|
2022-02-24 10:56:36 +01:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.RESET_ALL_REBOOT_COUNTERS:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd("Resetting all reboot counters")
|
2022-09-26 22:25:47 +02:00
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2022-09-26 22:25:47 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID,
|
2023-01-16 14:18:15 +01:00
|
|
|
action_id=ActionId.RESET_REBOOT_COUNTER,
|
2022-09-26 22:25:47 +02:00
|
|
|
)
|
2022-02-24 10:56:36 +01:00
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.RESET_REBOOT_COUNTER_00:
|
2022-09-26 22:25:47 +02:00
|
|
|
reset_specific_boot_counter(q, 0, 0)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.RESET_REBOOT_COUNTER_01:
|
2022-09-26 22:25:47 +02:00
|
|
|
reset_specific_boot_counter(q, 0, 1)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.RESET_REBOOT_COUNTER_10:
|
2022-09-26 22:25:47 +02:00
|
|
|
reset_specific_boot_counter(q, 1, 0)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.RESET_REBOOT_COUNTER_11:
|
2022-09-26 22:25:47 +02:00
|
|
|
reset_specific_boot_counter(q, 1, 1)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.OBSW_UPDATE_FROM_SD_0:
|
2022-09-26 22:25:47 +02:00
|
|
|
q.add_log_cmd(Info.OBSW_UPDATE_FROM_SD_0)
|
2023-01-16 14:18:15 +01:00
|
|
|
q.add_pus_tc(pack_obsw_update_cmd(ActionId.UPDATE_OBSW_FROM_SD_0))
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.OBSW_UPDATE_FROM_SD_1:
|
2022-09-26 22:25:47 +02:00
|
|
|
q.add_log_cmd(Info.OBSW_UPDATE_FROM_SD_1)
|
2023-01-16 14:18:15 +01:00
|
|
|
q.add_pus_tc(pack_obsw_update_cmd(ActionId.UPDATE_OBSW_FROM_SD_1))
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.OBSW_UPDATE_FROM_TMP:
|
2022-09-26 22:25:47 +02:00
|
|
|
q.add_log_cmd(Info.OBSW_UPDATE_FROM_TMP)
|
2023-01-16 14:18:15 +01:00
|
|
|
q.add_pus_tc(pack_obsw_update_cmd(ActionId.UPDATE_OBSW_FROM_TMP))
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.SWITCH_TO_SD_0:
|
2022-09-27 12:05:36 +02:00
|
|
|
q.add_log_cmd(Info.SWITCH_TO_SD_0)
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2023-01-16 14:18:15 +01:00
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=ActionId.SWITCH_TO_SD_0
|
2022-09-27 12:05:36 +02:00
|
|
|
)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.SWITCH_TO_SD_1:
|
2022-09-27 12:05:36 +02:00
|
|
|
q.add_log_cmd(Info.SWITCH_TO_SD_1)
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2023-01-16 14:18:15 +01:00
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=ActionId.SWITCH_TO_SD_1
|
2022-09-27 12:05:36 +02:00
|
|
|
)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.SWITCH_TO_BOTH_SD_CARDS:
|
2022-09-27 12:05:36 +02:00
|
|
|
while True:
|
2023-04-08 13:23:06 +02:00
|
|
|
active_sd_card = int(input("Please specify active SD card [0/1]: "))
|
2022-09-27 12:05:36 +02:00
|
|
|
if active_sd_card not in [0, 1]:
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER.warning("Invalid SD card specified. Try again")
|
2022-09-27 12:05:36 +02:00
|
|
|
break
|
|
|
|
q.add_log_cmd(Info.SWITCH_TO_BOTH_SD_CARDS)
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2022-09-27 12:05:36 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID,
|
2023-01-16 14:18:15 +01:00
|
|
|
action_id=ActionId.SWITCH_TO_BOTH_SD_CARDS,
|
2022-09-27 12:05:36 +02:00
|
|
|
user_data=bytes([active_sd_card]),
|
|
|
|
)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
elif op_code in OpCode.GET_HK:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd("Requesting housekeeping set")
|
2023-01-16 14:18:15 +01:00
|
|
|
sid = make_sid(object_id=CORE_CONTROLLER_ID, set_id=SetId.HK)
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_pus_tc(generate_one_hk_command(sid))
|
2023-04-12 18:51:38 +02:00
|
|
|
elif op_code in OpCode.SET_PREF_SD:
|
|
|
|
q.add_log_cmd("Set preferred SD card")
|
|
|
|
pref_sd = int(
|
|
|
|
input("Specify which SD card to set as the preferred one (0/1): ")
|
|
|
|
)
|
|
|
|
if pref_sd not in [0, 1]:
|
|
|
|
raise ValueError("Only 0 or 1 allowed for preferred SD card")
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_load_param_cmd(
|
|
|
|
create_scalar_u8_parameter(
|
|
|
|
object_id=CORE_CONTROLLER_ID,
|
|
|
|
domain_id=0,
|
|
|
|
unique_id=ParamId.PREF_SD,
|
|
|
|
parameter=pref_sd,
|
|
|
|
).pack()
|
|
|
|
)
|
|
|
|
)
|
2023-04-15 20:51:08 +02:00
|
|
|
elif op_code == OpCode.CP_HELPER:
|
|
|
|
cp_recursive = int(input("Copy recursively (0/1) ?: "))
|
|
|
|
if cp_recursive not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
user_data = bytearray([cp_recursive])
|
|
|
|
user_data.extend(packet_source_dest_path("Copy"))
|
|
|
|
q.add_log_cmd(Info.CP_HELPER)
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.CP_HELPER, user_data)
|
|
|
|
)
|
|
|
|
elif op_code == OpCode.MV_HELPER:
|
|
|
|
user_data = packet_source_dest_path("Move")
|
|
|
|
q.add_log_cmd(Info.MV_HELPER)
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.MV_HELPER, user_data)
|
|
|
|
)
|
|
|
|
elif op_code == OpCode.RM_HELPER:
|
|
|
|
rm_recursive = int(input("Remove with recursive (-r) option (0/1) ?: "))
|
|
|
|
if rm_recursive not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
rm_force = int(input("Remove with force (-f) option (0/1) ?: "))
|
|
|
|
if rm_force not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
user_data = bytearray([rm_recursive, rm_force])
|
2023-04-15 21:53:11 +02:00
|
|
|
removed_file_or_dir = input("Specify absolute path to be removed: ")
|
|
|
|
user_data.extend(removed_file_or_dir.encode())
|
|
|
|
user_data.append(0)
|
2023-04-15 20:51:08 +02:00
|
|
|
q.add_log_cmd(Info.RM_HELPER)
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.RM_HELPER, user_data)
|
|
|
|
)
|
|
|
|
elif op_code == OpCode.LIST_DIR_INTO_FILE:
|
|
|
|
q.add_log_cmd(Info.LIST_DIR_INTO_FILE)
|
|
|
|
user_data = list_directory_base_user_data()
|
|
|
|
dest_file_path = input("Destination file path: ")
|
|
|
|
user_data.extend(dest_file_path.encode())
|
|
|
|
user_data.append(0)
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(
|
|
|
|
CORE_CONTROLLER_ID, ActionId.LIST_DIR_INTO_FILE, user_data
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif op_code == OpCode.LIST_DIR_DUMP_DIRECTLY:
|
|
|
|
q.add_log_cmd(Info.LIST_DIR_DUMP_DIRECTLY)
|
|
|
|
user_data = list_directory_base_user_data()
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(
|
|
|
|
CORE_CONTROLLER_ID, ActionId.LIST_DIR_DUMP_DIRECTLY, user_data
|
|
|
|
)
|
|
|
|
)
|
2023-04-15 21:53:11 +02:00
|
|
|
elif op_code == OpCode.MKDIR_HELPER:
|
|
|
|
q.add_log_cmd(Info.MKDIR_HELPER)
|
|
|
|
user_data = input("Specify absolute path of newly created directory: ")
|
|
|
|
user_data = bytearray(user_data.encode())
|
|
|
|
user_data.append(0)
|
|
|
|
q.add_pus_tc(
|
|
|
|
create_action_cmd(CORE_CONTROLLER_ID, ActionId.MKDIR_HELPER, user_data)
|
|
|
|
)
|
2023-03-11 15:23:02 +01:00
|
|
|
else:
|
2023-03-13 10:31:27 +01:00
|
|
|
_LOGGER.warning(
|
|
|
|
f"Unknown operation code {op_code} for core controller commands"
|
|
|
|
)
|
2021-08-03 15:28:28 +02:00
|
|
|
|
|
|
|
|
2023-05-19 11:01:06 +02:00
|
|
|
def create_systemctl_cmd(systemctl_cmd: SystemctlCmd, unit_name: str):
|
|
|
|
cmd_data = bytearray([systemctl_cmd])
|
|
|
|
cmd_data.extend(unit_name.encode())
|
|
|
|
return create_action_cmd(
|
|
|
|
object_id=CORE_CONTROLLER_ID,
|
|
|
|
action_id=ActionId.SYSTEMCTL_CMD_EXECUTOR,
|
|
|
|
user_data=cmd_data,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-04-15 20:51:08 +02:00
|
|
|
def list_directory_base_user_data() -> bytearray:
|
|
|
|
all_opt = int(input("Use all (-a) option (0/1) ?: "))
|
|
|
|
if all_opt not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
recursive_opt = int(input("Use recursive (-R) option (0/1) ?: "))
|
|
|
|
if recursive_opt not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
compression_opt = int(input("Compress target file (0/1) ?: "))
|
|
|
|
if compression_opt not in [0, 1]:
|
|
|
|
raise ValueError("Invalid value, only 0 or 1 allowed")
|
|
|
|
listing_path = input("Specify listing path (absolute path): ")
|
|
|
|
user_data = bytearray([all_opt, recursive_opt, compression_opt])
|
|
|
|
user_data.extend(listing_path.encode())
|
|
|
|
user_data.append(0)
|
2023-04-15 20:51:19 +02:00
|
|
|
return user_data
|
2023-04-15 20:51:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
def packet_source_dest_path(context: str) -> bytes:
|
2023-04-15 21:53:11 +02:00
|
|
|
source = input(f"Specify {context} source file: ")
|
|
|
|
dest = input(f"Specify {context} destination file: ")
|
2023-04-15 20:51:08 +02:00
|
|
|
raw_src_dest = bytearray(source.encode())
|
|
|
|
raw_src_dest.append(0)
|
|
|
|
raw_src_dest.extend(dest.encode())
|
|
|
|
raw_src_dest.append(0)
|
|
|
|
return raw_src_dest
|
|
|
|
|
|
|
|
|
2022-09-26 22:25:47 +02:00
|
|
|
def reset_specific_boot_counter(q: DefaultPusQueueHelper, chip: int, copy: int):
|
|
|
|
q.add_log_cmd(f"Resetting boot counter {chip} {copy}")
|
|
|
|
q.add_pus_tc(
|
2023-01-18 11:32:21 +01:00
|
|
|
create_action_cmd(
|
2022-09-26 22:25:47 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID,
|
2023-01-16 14:18:15 +01:00
|
|
|
action_id=ActionId.RESET_REBOOT_COUNTER,
|
2022-09-26 22:25:47 +02:00
|
|
|
user_data=bytes([chip, copy]),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-01-11 14:28:45 +01:00
|
|
|
def create_full_reboot_cmds() -> PusTelecommand:
|
2023-01-18 11:32:21 +01:00
|
|
|
return create_action_cmd(
|
2023-01-16 14:18:15 +01:00
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=ActionId.FULL_REBOOT
|
2023-01-11 14:28:45 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-08-03 15:28:28 +02:00
|
|
|
def determine_reboot_params() -> (bool, Chip, Copy):
|
|
|
|
chip_select = -1
|
|
|
|
copy_select = -1
|
2022-01-18 14:03:56 +01:00
|
|
|
reboot_self = input("Reboot self? [y/n]: ")
|
|
|
|
if reboot_self in ["y", "yes", "1"]:
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER.info("Rebooting currently running image")
|
2021-08-03 15:28:28 +02:00
|
|
|
return True, chip_select, copy_select
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER.info("Rebooting image specified by chip and copy")
|
2022-09-26 22:25:47 +02:00
|
|
|
return False, determine_chip_and_copy()
|
|
|
|
|
|
|
|
|
|
|
|
def determine_chip_and_copy() -> (int, int):
|
2021-08-03 15:28:28 +02:00
|
|
|
while True:
|
2022-01-18 14:03:56 +01:00
|
|
|
chip_select = input("Chip select [0/1]: ")
|
|
|
|
if chip_select in ["0", "1"]:
|
|
|
|
if chip_select == "0":
|
2021-08-03 15:28:28 +02:00
|
|
|
chip_select = Chip.CHIP_0
|
|
|
|
else:
|
|
|
|
chip_select = Chip.CHIP_1
|
|
|
|
break
|
|
|
|
else:
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER.warning("Invalid chip select value. Try again")
|
2021-08-03 15:28:28 +02:00
|
|
|
while True:
|
2022-01-18 14:03:56 +01:00
|
|
|
copy_select = input("Copy select [0/1]: ")
|
|
|
|
if copy_select in ["0", "1"]:
|
|
|
|
if copy_select == "0":
|
2021-08-03 15:28:28 +02:00
|
|
|
copy_select = Copy.COPY_0_NOM
|
|
|
|
else:
|
|
|
|
copy_select = Copy.COPY_1_GOLD
|
|
|
|
break
|
|
|
|
else:
|
2023-02-01 11:17:04 +01:00
|
|
|
_LOGGER.warning("Invalid copy select value. Try again")
|
2022-09-26 22:25:47 +02:00
|
|
|
return chip_select, copy_select
|
|
|
|
|
|
|
|
|
|
|
|
def pack_obsw_update_cmd(action_id: int) -> PusTelecommand:
|
|
|
|
chip, copy = determine_chip_and_copy()
|
2023-04-08 11:39:41 +02:00
|
|
|
user_data = bytearray([chip, copy])
|
|
|
|
custom_file_name = input("Use custom filename [y/n] ?: ")
|
|
|
|
if custom_file_name.lower() in ["y", "yes", "1"]:
|
|
|
|
custom_file_name = input("Specify custom filename: ")
|
|
|
|
user_data.extend(custom_file_name.encode())
|
2023-01-18 11:32:21 +01:00
|
|
|
return create_action_cmd(
|
2022-09-26 22:25:47 +02:00
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=action_id, user_data=user_data
|
|
|
|
)
|
2021-08-03 15:28:28 +02:00
|
|
|
|
|
|
|
|
2023-01-11 14:23:03 +01:00
|
|
|
def add_xsc_reboot_cmd(
|
2022-08-08 16:32:18 +02:00
|
|
|
q: DefaultPusQueueHelper,
|
2022-01-18 14:03:56 +01:00
|
|
|
reboot_self: bool,
|
|
|
|
chip: Chip = Chip.NONE,
|
|
|
|
copy: Copy = Copy.NONE,
|
2021-08-03 15:28:28 +02:00
|
|
|
):
|
|
|
|
if reboot_self:
|
2022-07-04 17:59:09 +02:00
|
|
|
q.add_log_cmd("Packing reboot command for current image")
|
2023-01-11 14:23:03 +01:00
|
|
|
else:
|
|
|
|
q.add_log_cmd(f"Packing reboot command for chip {chip} and copy {copy}")
|
|
|
|
q.add_pus_tc(create_xsc_reboot_cmds(reboot_self, chip, copy))
|
|
|
|
|
|
|
|
|
|
|
|
def create_xsc_reboot_cmds(
|
|
|
|
reboot_self: bool,
|
|
|
|
chip: Chip = Chip.NONE,
|
|
|
|
copy: Copy = Copy.NONE,
|
|
|
|
) -> PusTelecommand:
|
|
|
|
tc_data = bytearray()
|
|
|
|
if reboot_self:
|
2021-08-03 15:28:28 +02:00
|
|
|
tc_data.append(True)
|
|
|
|
else:
|
|
|
|
tc_data.append(False)
|
|
|
|
tc_data.append(chip)
|
|
|
|
tc_data.append(copy)
|
2023-01-18 11:32:21 +01:00
|
|
|
return create_action_cmd(
|
2023-01-16 14:18:15 +01:00
|
|
|
object_id=CORE_CONTROLLER_ID, action_id=ActionId.XSC_REBOOT, user_data=tc_data
|
2021-08-03 15:28:28 +02:00
|
|
|
)
|
2023-01-11 14:19:47 +01:00
|
|
|
|
|
|
|
|
2023-05-24 13:50:37 +02:00
|
|
|
def handle_core_hk_data(pw: PrintWrapper, set_id: int, hk_data: bytes):
|
2023-01-16 14:18:15 +01:00
|
|
|
if set_id == SetId.HK:
|
2023-01-11 14:19:47 +01:00
|
|
|
fmt_str = "!fff"
|
|
|
|
inc_len = struct.calcsize(fmt_str)
|
|
|
|
(temperature, ps_voltage, pl_voltage) = struct.unpack(
|
|
|
|
fmt_str, hk_data[0 : 0 + inc_len]
|
|
|
|
)
|
|
|
|
printout = (
|
|
|
|
f"Chip Temperature [°C] {temperature} | PS Voltage [mV] {ps_voltage} | "
|
|
|
|
f"PL Voltage [mV] {pl_voltage}"
|
|
|
|
)
|
|
|
|
pw.dlog(printout)
|
2023-05-24 13:50:37 +02:00
|
|
|
FsfwTmTcPrinter.get_validity_buffer(
|
|
|
|
validity_buffer=hk_data[inc_len:], num_vars=3
|
|
|
|
)
|
2023-04-16 02:00:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
def handle_core_ctrl_action_replies(
|
2023-05-24 13:50:37 +02:00
|
|
|
action_id: int, pw: PrintWrapper, custom_data: bytes
|
2023-04-16 02:00:50 +02:00
|
|
|
):
|
|
|
|
if action_id == ActionId.LIST_DIR_DUMP_DIRECTLY:
|
|
|
|
if len(custom_data) < 4:
|
|
|
|
_LOGGER.warning("Data unexpectedly small")
|
|
|
|
return
|
|
|
|
seq_idx = struct.unpack("!I", custom_data[0:4])[0]
|
|
|
|
total_chunks = struct.unpack("!I", custom_data[4:8])[0]
|
2023-04-16 02:56:14 +02:00
|
|
|
compressed = custom_data[8]
|
|
|
|
ls_cmd = custom_data[9:].split(b"\x00")[0].decode()
|
2023-04-16 02:00:50 +02:00
|
|
|
# Include length of NULL termination
|
2023-04-16 02:56:14 +02:00
|
|
|
file_data_offset = 9 + len(ls_cmd) + 1
|
2023-04-16 02:00:50 +02:00
|
|
|
pw.dlog(
|
2023-04-16 02:56:14 +02:00
|
|
|
f"Received directory listing dump for ls command {ls_cmd}. "
|
|
|
|
f"Chunk {seq_idx + 1}/{total_chunks}"
|
2023-04-16 02:00:50 +02:00
|
|
|
)
|
2023-04-16 02:56:14 +02:00
|
|
|
|
|
|
|
def remove_if_exists_and_new(seq_idx_: int, path_: Path):
|
|
|
|
if seq_idx_ == 0 and path_.exists():
|
|
|
|
os.remove(path_)
|
|
|
|
|
2023-04-16 02:00:50 +02:00
|
|
|
if compressed:
|
2023-04-16 02:56:14 +02:00
|
|
|
path = Path("dir_listing.txt.gz")
|
|
|
|
remove_if_exists_and_new(seq_idx, path)
|
2023-04-16 02:00:50 +02:00
|
|
|
pw.dlog(
|
|
|
|
f"Compression option: {compressed}. Dumping file into dir_listing.txt.gz"
|
|
|
|
)
|
2023-04-16 02:56:14 +02:00
|
|
|
with open(path, "ab") as listing_file:
|
2023-04-16 02:00:50 +02:00
|
|
|
listing_file.write(custom_data[file_data_offset:])
|
|
|
|
else:
|
2023-04-16 02:56:14 +02:00
|
|
|
path = Path("dir_listing.txt")
|
|
|
|
remove_if_exists_and_new(seq_idx, path)
|
2023-04-16 02:00:50 +02:00
|
|
|
pw.dlog(
|
|
|
|
f"Compression option: {compressed}. Dumping file into dir_listing.txt"
|
|
|
|
)
|
2023-04-16 02:56:14 +02:00
|
|
|
with open(path, "a") as listing_file:
|
2023-04-16 02:00:50 +02:00
|
|
|
listing_file_str = custom_data[file_data_offset:].decode()
|
|
|
|
listing_file.write(listing_file_str)
|
2023-04-16 02:56:14 +02:00
|
|
|
if seq_idx + 1 == total_chunks:
|
|
|
|
pw.dlog("Full directory listing: ")
|
|
|
|
with open("dir_listing.txt", "r") as listing_file:
|
|
|
|
print(listing_file.read())
|