123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import crcmod.predefined
- import re, struct, sys
- from greaseweazle import version
- def mk_cat_entry(dat, hw_model, sig):
- max_kb = { 1: { b'BL': 8, b'GW': 56 },
- 7: { b'BL': 16, b'GW': 48 } }
- dlen = len(dat)
- assert (dlen & 3) == 0, "input is not longword padded"
- assert dlen <= max_kb[hw_model][sig]*1024, "input is too long"
- header = struct.pack("<2H", dlen + 8, hw_model)
- footer = struct.pack("<2s2BH", sig, version.major, version.minor, hw_model)
- crc16 = crcmod.predefined.Crc('crc-ccitt-false')
- crc16.update(dat)
- crc16.update(footer)
- footer += struct.pack(">H", crc16.crcValue)
- return header + dat + footer
- def main(argv):
- out_f = open(argv[3], "wb")
- hw_model = int(re.match("f(\d)", argv[4]).group(1))
- with open(argv[2], "rb") as gw_f:
- out_f.write(mk_cat_entry(gw_f.read(), hw_model, b'GW'))
- with open(argv[1], "rb") as bl_f:
- out_f.write(mk_cat_entry(bl_f.read(), hw_model, b'BL'))
- if __name__ == "__main__":
- main(sys.argv)
|