51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
from spacepackets.ecss import PusService, PusTelecommand
|
|
from tmtccmd.config import CmdTreeNode
|
|
from tmtccmd.pus.s17_test import create_service_17_ping_command
|
|
from tmtccmd.tmtc import DefaultPusQueueHelper
|
|
|
|
|
|
class OpCode:
|
|
PING = "ping"
|
|
TRIGGER_EVENT = "trig_event"
|
|
PING_WITH_DATA = "ping_with_data"
|
|
|
|
|
|
class Info:
|
|
PING = "Simple Ping and Connection Test"
|
|
TRIGGER_EVENT = "Trigger an event"
|
|
PING_WITH_DATA = "Ping with data. Size of sent data is sent back"
|
|
|
|
|
|
def create_test_node() -> CmdTreeNode:
|
|
node = CmdTreeNode("test", "Test Commands")
|
|
node.add_child(CmdTreeNode(OpCode.PING, Info.PING))
|
|
node.add_child(CmdTreeNode(OpCode.TRIGGER_EVENT, Info.TRIGGER_EVENT))
|
|
node.add_child(CmdTreeNode(OpCode.PING_WITH_DATA, Info.PING_WITH_DATA))
|
|
return node
|
|
|
|
|
|
def build_test_commands(q: DefaultPusQueueHelper, cmd_path: str):
|
|
if cmd_path == OpCode.PING:
|
|
q.add_log_cmd("Sending PUS TC [17,1]")
|
|
q.add_pus_tc(create_service_17_ping_command())
|
|
if cmd_path == OpCode.TRIGGER_EVENT:
|
|
q.add_log_cmd("Sending PUS TC Event Trigger [17, 128]")
|
|
q.add_pus_tc(PusTelecommand(service=PusService.S17_TEST, subservice=128))
|
|
if cmd_path == OpCode.PING_WITH_DATA:
|
|
q.add_log_cmd("Sending Ping With Data, Size Reported Back [17, 129]")
|
|
while True:
|
|
data_size = int(input("Please specify data size [0-1024]: "))
|
|
if data_size < 0 or data_size > 1024:
|
|
print("Invalid data size")
|
|
break
|
|
dummy_data = bytearray()
|
|
next_byte = True
|
|
for _ in range(data_size):
|
|
dummy_data.append(int(next_byte))
|
|
next_byte = not next_byte
|
|
q.add_pus_tc(
|
|
PusTelecommand(
|
|
service=PusService.S17_TEST, subservice=130, app_data=dummy_data
|
|
)
|
|
)
|