ICOM IC-R15 firmware
4.8.2024
ICOM IC-R15 firmware
ICOM IC-R15 radio scanner firmware file R15E102.dat is binary format file. Some tools to examine those type of files:
Detect It Easy
Linux hexdump cmd
head -c 7675410 R15E102.dat | hexdump -C > R15.txt
Python
import binascii
f = open("G:\\unidensds\\R15E102.dat", mode="rb")
fo = open("G:\\unidensds\\R15E102.txt", mode="w")
i = 0
print("In progress...")
data = f.read(32)
while data:
s = binascii.b2a_uu(data)
fo.write(str(s) + "\r\n")
i = i + 1
if (i % 1024 == 1):
print(str(i))
data = f.read(32)
f.close()
fo.close()
print("End")
Comments
Post a Comment