minor fixes
This commit is contained in:
parent
825a1972c4
commit
5c675560ea
@ -272,13 +272,13 @@ def pack_ploc_supv_commands(p: ServiceProviderParams):
|
|||||||
key = -1
|
key = -1
|
||||||
while True:
|
while True:
|
||||||
print("Please select the key for a factory reset operation")
|
print("Please select the key for a factory reset operation")
|
||||||
for key, val in FACTORY_RESET_OPS:
|
for key, val in FACTORY_RESET_OPS.items():
|
||||||
print(f"{key}: {val}")
|
print(f"{key}: {val}")
|
||||||
key = int(input("Key Select: "))
|
key = int(input("Key Select: "))
|
||||||
if key not in FACTORY_RESET_OPS:
|
if key not in FACTORY_RESET_OPS:
|
||||||
print("Key invalid!")
|
print("Key invalid!")
|
||||||
break
|
break
|
||||||
q.add_pus_tc(PusTelecommand(service=8, subservice=128, app_data=bytes([key])))
|
q.add_pus_tc(make_fsfw_action_cmd(object_id=PLOC_SUPV_ID, action_id=SupvActionIds.FACTORY_RESET, user_data=bytes([key])))
|
||||||
if op_code == "8":
|
if op_code == "8":
|
||||||
q.add_log_cmd("PLOC Supervisor: Set max restart tries")
|
q.add_log_cmd("PLOC Supervisor: Set max restart tries")
|
||||||
restart_tries = int(input("Specify maximum restart tries: "))
|
restart_tries = int(input("Specify maximum restart tries: "))
|
||||||
|
Loading…
Reference in New Issue
Block a user