Updated HackRF firmware

This commit is contained in:
2022-05-13 13:08:12 -04:00
parent 3618a32734
commit 8dae36514e
611 changed files with 286269 additions and 159089 deletions

View File

@ -0,0 +1,8 @@
import os.path
import struct
import sys
with open("_header.bin", "wb") as f:
x = struct.pack('<H', os.path.getsize(sys.argv[1] + '_dfu.bin') // 512 + 1)
y = [0xda, 0xff, x[0], x[1]] + [0xff] * 12
f.write(bytearray(y))