comparison cos/utils/bin2c.py @ 25:d3c4bf3720a3

Beginning of multitasking
author windel
date Tue, 27 Dec 2011 13:31:38 +0100
parents
children 47b7df514243
comparison
equal deleted inserted replaced
24:d8627924d40d 25:d3c4bf3720a3
1 #!/usr/bin/python
2
3 import sys
4 print(sys.argv)
5 if len(sys.argv) < 2:
6 print('Usage: {0} binfile [headerfile]'.format(sys.argv[0]))
7 sys.exit(-1)
8
9 with open(sys.argv[1], 'rb') as f:
10 data = f.read()
11
12 s = ', '.join(hex(b) for b in data)
13 output = 'unsigned char[] data = {{{0}}};'.format(s)
14 if len(sys.argv) < 3:
15 print(output)
16 else:
17 with open(sys.argv[2], 'w') as f:
18 f.write(output)
19