eive-tmtc/pus_tc/pdu2.py

157 lines
7.6 KiB
Python
Raw Normal View History

2020-12-29 11:29:03 +01:00
# -*- coding: utf-8 -*-
"""
@file tmtcc_tc_pdu2.py
@brief PDU2 tests
2021-08-17 10:37:13 +02:00
@details PDU2 is mounted on the X2 slot of the P60 dock
2020-12-29 11:29:03 +01:00
@author J. Meier
@date 17.12.2020
"""
2021-05-17 17:42:04 +02:00
from tmtccmd.config.definitions import QueueCommands
from tmtccmd.tc.packer import TcQueueT
2020-12-29 11:29:03 +01:00
from gomspace.gomspace_common import *
from gomspace.gomspace_pdu_definitions import *
2021-09-07 14:51:50 +02:00
class Pdu2OpCodes(enum.Enum):
ACS_SIDE_B_ON = "1"
ACS_SIDE_B_OFF = "2"
2021-09-16 14:51:24 +02:00
SUS_REDUNDANT_ON = "3"
SUS_REDUNDANT_OFF = "4"
RW_ON = "5"
RW_OFF = "6"
2020-12-29 11:29:03 +01:00
class PDU2TestProcedure:
"""
@brief Use this class to define the tests to perform for the PDU2.
@details Setting all to True will run all tests.
Setting all to False will only run the tests set to True.
"""
2021-02-06 16:35:53 +01:00
all = False
2020-12-29 11:29:03 +01:00
reboot = False
read_gnd_wdt = False
gnd_wdt_reset = False
ping = False
2021-02-11 08:18:42 +01:00
channel_2_off = False # Reaction wheels 5V
2021-09-08 13:43:47 +02:00
read_temperature = False
2021-02-11 08:18:42 +01:00
read_channel_2_state = False # Reaction wheels 5V
2021-03-19 17:50:09 +01:00
read_cur_lu_lim_0 = False # OBC
2021-02-11 08:18:42 +01:00
channel_2_on = False # Reaction wheels 5V
2020-12-29 11:29:03 +01:00
invalid_table_id_test = False # Test to check if software properly handles invalid table ids
invalid_address_test = False # Test to check if software properly handles invalid addresses
2021-02-06 16:35:53 +01:00
invalid_parameter_size_test = False
2021-02-11 08:18:42 +01:00
request_hk_table = False
2020-12-29 11:29:03 +01:00
2021-09-17 13:06:53 +02:00
def pack_pdu2_commands(object_id: bytearray, tc_queue: TcQueueT, op_code: str) -> TcQueueT:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "Testing PDU2"))
2020-12-29 11:29:03 +01:00
2021-09-07 14:51:50 +02:00
if op_code == Pdu2OpCodes.ACS_SIDE_B_ON.value:
2021-08-17 11:49:37 +02:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn ACS Side B on"))
2021-09-07 15:45:05 +02:00
command = pack_set_param_command(
object_id, PDUConfigTable.out_en_7.parameter_address,
PDUConfigTable.out_en_7.parameter_size, Channel.on
)
2021-08-17 11:49:37 +02:00
tc_queue.appendleft(command.pack_command_tuple())
return tc_queue
2021-09-07 14:51:50 +02:00
if op_code == Pdu2OpCodes.ACS_SIDE_B_OFF.value:
2021-08-17 11:49:37 +02:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn ACS Side B off"))
2021-09-07 15:45:05 +02:00
command = pack_set_param_command(
object_id, PDUConfigTable.out_en_7.parameter_address,
PDUConfigTable.out_en_7.parameter_size, Channel.off
)
2021-08-17 11:49:37 +02:00
tc_queue.appendleft(command.pack_command_tuple())
return tc_queue
2021-09-16 14:51:24 +02:00
if op_code == Pdu2OpCodes.SUS_REDUNDANT_ON.value:
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn SUS redundant on"))
command = pack_set_param_command(object_id, PDUConfigTable.out_en_4.parameter_address,
PDUConfigTable.out_en_4.parameter_size, Channel.on)
tc_queue.appendleft(command.pack_command_tuple())
2021-09-16 14:51:24 +02:00
if op_code == Pdu2OpCodes.SUS_REDUNDANT_OFF.value:
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn SUS redundant off"))
command = pack_set_param_command(object_id, PDUConfigTable.out_en_4.parameter_address,
PDUConfigTable.out_en_4.parameter_size, Channel.off)
tc_queue.appendleft(command.pack_command_tuple())
2021-09-16 14:51:24 +02:00
if op_code == Pdu2OpCodes.RW_ON.value:
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn reaction wheels on"))
2021-09-15 18:48:28 +02:00
command = pack_set_param_command(
2021-09-16 14:51:24 +02:00
object_id, PDUConfigTable.out_en_2.parameter_address,
PDUConfigTable.out_en_2.parameter_size, Channel.on
2021-09-15 18:48:28 +02:00
)
tc_queue.appendleft(command.pack_command_tuple())
2021-09-16 14:51:24 +02:00
if op_code == Pdu2OpCodes.RW_OFF.value:
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Turn reaction wheels off"))
command = pack_set_param_command(object_id, PDUConfigTable.out_en_2.parameter_address,
PDUConfigTable.out_en_2.parameter_size, Channel.off)
2021-09-15 18:48:28 +02:00
tc_queue.appendleft(command.pack_command_tuple())
2021-09-20 11:47:04 +02:00
if op_code == GomspaceOpCodes.PRINT_SWITCH_V_I.value:
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Print Switches, Currents, Voltahes"))
2021-09-16 14:51:24 +02:00
command = generate_action_command(
2021-09-20 11:47:04 +02:00
object_id=object_id, action_id=GomspaceDeviceActionIds.PRINT_SWITCH_V_I
2021-09-07 14:51:50 +02:00
)
tc_queue.appendleft(command.pack_command_tuple())
2020-12-29 11:29:03 +01:00
if PDU2TestProcedure.all or PDU2TestProcedure.reboot:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Reboot"))
2021-08-17 11:49:37 +02:00
command = pack_reboot_command(object_id)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.read_gnd_wdt:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Reading ground watchdog timer value"))
2021-09-07 14:51:50 +02:00
command = pack_get_param_command(
object_id, TableIds.hk, PDUHkTable.wdt_gnd_left.parameter_address,
PDUHkTable.wdt_gnd_left.parameter_size
)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.gnd_wdt_reset:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Testing ground watchdog reset"))
2021-08-17 11:49:37 +02:00
command = pack_gnd_wdt_reset_command(object_id)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.ping:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Ping Test"))
2020-12-29 11:29:03 +01:00
ping_data = bytearray([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
2021-08-17 11:49:37 +02:00
command = pack_ping_command(object_id, ping_data)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.channel_2_on:
2021-09-07 14:51:50 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PDU2: Testing setting output channel 2 on (TCS Heater)")
)
2021-08-17 11:49:37 +02:00
command = pack_set_param_command(object_id, PDUConfigTable.out_en_2.parameter_address,
2020-12-29 11:29:03 +01:00
PDUConfigTable.out_en_2.parameter_size, Channel.on)
tc_queue.appendleft(command.pack_command_tuple())
2021-02-06 16:35:53 +01:00
if PDU2TestProcedure.all or PDU2TestProcedure.read_temperature:
2021-09-08 13:43:47 +02:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Testing temperature reading"))
2021-09-07 14:51:50 +02:00
command = pack_get_param_command(
object_id, TableIds.hk, PDUHkTable.temperature.parameter_address,
PDUHkTable.temperature.parameter_size
)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.read_channel_2_state:
2021-09-07 14:51:50 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PDU2: Reading output channel 2 state (TCS Heater)")
)
command = pack_get_param_command(
object_id, TableIds.config, PDUConfigTable.out_en_2.parameter_address,
PDUConfigTable.out_en_2.parameter_size
)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.read_cur_lu_lim_0:
2021-09-07 14:51:50 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PDU2: Reading current limit value of output channel 0 (OBC)")
)
command = pack_get_param_command(
object_id, TableIds.config, PDUConfigTable.cur_lu_lim_0.parameter_address,
PDUConfigTable.cur_lu_lim_0.parameter_size
)
2020-12-29 11:29:03 +01:00
tc_queue.appendleft(command.pack_command_tuple())
if PDU2TestProcedure.all or PDU2TestProcedure.channel_2_off:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Testing setting output channel 2 off"))
2021-08-17 11:49:37 +02:00
command = pack_set_param_command(object_id, PDUConfigTable.out_en_2.parameter_address,
2020-12-29 11:29:03 +01:00
PDUConfigTable.out_en_2.parameter_size, Channel.off)
tc_queue.appendleft(command.pack_command_tuple())
2021-02-06 16:35:53 +01:00
if PDU2TestProcedure.all or PDU2TestProcedure.request_hk_table:
2021-02-09 12:35:10 +01:00
tc_queue.appendleft((QueueCommands.PRINT, "PDU2: Requesting housekeeping table"))
2021-08-17 11:49:37 +02:00
command = pack_request_full_hk_table_command(object_id)
2021-02-06 16:35:53 +01:00
tc_queue.appendleft(command.pack_command_tuple())
2021-04-18 16:35:18 +02:00
2020-12-29 11:29:03 +01:00
return tc_queue