From b73e95f45448b1f785dfdec4a5887d6298e71f5a Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Sun, 11 Dec 2022 02:53:51 +0100 Subject: [PATCH] NEW device.get_name() METHOD! Added -q parameter to get_updates. Reworked device database for sub-ids. --- binsum.py | 2 +- find_hwids.py | 8 +- get_updates.py | 20 +- grmn/devices.py | 3083 +++++++++++++++++++++++------------------ grmn/rgnbin.py | 2 +- grmn/tlv.py | 4 +- list_missing_hwids.py | 10 +- 7 files changed, 1759 insertions(+), 1370 deletions(-) diff --git a/binsum.py b/binsum.py index 7e874b3..cd26013 100644 --- a/binsum.py +++ b/binsum.py @@ -35,7 +35,7 @@ with open(FILE, "rb") as f: start += 4 hwid = unpack(" 15: - print("./get_updates.py {}".format(" ".join(cur_line))) + print("./get_updates.py -q {}".format(" ".join(cur_line))) cur_line = queue else: cur_line += queue queue = [] - if not i in missing: + if i not in missing: continue queue.append("{:04}".format(i)) missing_count += 1 cur_line += queue if len(cur_line) > 0: - print("./get_updates.py {}".format(" ".join(cur_line))) + print("./get_updates.py -q {}".format(" ".join(cur_line))) known_count = len(devices.DEVICES) print() @@ -50,13 +50,13 @@ if len(sys.argv) > 1: print("-" * 100) print("Here are some possible future ids:") - print("./get_updates.py", end="") + print("./get_updates.py -q", end="") cur_line = 0 for i in range(last_id + 1, last_id + 300): if i % 10 == 0 and cur_line > 5: print() - print("./get_updates.py", end="") + print("./get_updates.py -q", end="") cur_line = 0 print(" {:04}".format(i), end="") cur_line += 1