Testing: More features, but probably not going to finish

This commit is contained in:
2025-05-13 15:51:24 +02:00
parent 986d887587
commit 1fe48f2494
3 changed files with 92 additions and 23 deletions

View File

@@ -14,4 +14,5 @@ class Decoder:
return struct.unpack('>f', bytes.fromhex(str(value, 'ascii') + '0000'))[0]
def decode_int(self, value: bytes) -> int:
# return int.from_bytes(value, 'big')
return int(value, base=16)