blob: 7ecb1561978b253d59dd8ee59c39825de9cb53a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from __future__ import print_function
import binascii
def file_byte_generator(filename, block_size = 512):
with open(filename, "rb") as f:
while True:
block = f.read(block_size)
if block:
for byte in block:
yield byte
else:
break
def create_header(out_fh, in_filename):
assert out_fh.name.endswith('.h')
array_name = out_fh.name[:-2] + 'Data'
hexified = ["0x" + binascii.hexlify(byte) for byte in file_byte_generator(in_filename)]
print("const uint8_t " + array_name + "[] = {", file=out_fh)
print(", ".join(hexified), file=out_fh)
print("};", file=out_fh)
return 0
|