From b3f0c08bd757c8b6616398eb6dbd64c9107d59bc Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 22 Aug 2022 12:07:35 +0200 Subject: [PATCH] small fix --- tmtc/ploc_supervisor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmtc/ploc_supervisor.py b/tmtc/ploc_supervisor.py index 1d9770a..c9016fa 100644 --- a/tmtc/ploc_supervisor.py +++ b/tmtc/ploc_supervisor.py @@ -433,7 +433,7 @@ def pack_ploc_supv_commands(p: ServiceProviderParams): custom_data = bytearray() memory_id = int(input("Specify memory ID: ")) start_address = int(input("Specify start address: 0x"), 16) - check_size = int(input("Specify check size: 0x")) + check_size = int(input("Specify check size: ")) custom_data.extend(struct.pack("!B", memory_id)) custom_data.extend(struct.pack("!I", start_address)) custom_data.extend(struct.pack("!I", check_size))