#!/usr/bin/env python3
# BlueKitchen GmbH (c) 2017
import sys

usage = '''This script converts the HCI Firmware in .bin format for Atmel WILC3000
into C files to be used with BTstack.

Usage:
$ ./convert_firmware_bin.py firmware.bin
'''

header = '''
/** 
 * BASENAME.h converted from BASENAME.bin 
 */

#ifndef BASENAME_H
#define BASENAME_H

#include <stdint.h>

extern const uint8_t  atwilc3000_fw_data[];
extern const uint32_t atwilc3000_fw_size;
extern const char *   atwilc3000_fw_name;

#endif
'''

code_start = '''
/** 
 * BASENAME.c converted from BASENAME.bin
 */

#include "BASENAME.h"

const char *   atwilc3000_fw_name = "BASENAME";

const uint8_t  atwilc3000_fw_data[] = {
'''

code_end = '''
};
const uint32_t atwilc3000_fw_size = sizeof(atwilc3000_fw_data);
'''

def convert_bin(basename):
	bin_name = basename + '.bin'
	print ('Reading %s' % bin_name)

	with open (bin_name, 'rb') as fin:
		firm = fin.read()
		size = len(firm)
		print ('Size %u', size)

		with open(basename + '.h', 'w') as fout:
			fout.write(header.replace('BASENAME',basename));

		with open(basename + '.c', 'w') as fout:
			fout.write(code_start.replace('BASENAME',basename));
			fout.write('    ')
			for i in range(0,size):
				if i % 10000 == 0:
					print ('- Write %05u/%05u' % (i, size))
				byte = ord(firm[i])
				fout.write("0x{0:02x}, ".format(byte))
				if (i & 0x0f) == 0x0f:
					fout.write('\n    ')
			fout.write(code_end);
			print ('Done\n') 

# check usage: 1 param
if not len(sys.argv) == 2:
    print(usage)
    sys.exit(1)

name = sys.argv[1]
basename = name.replace('.bin','')
convert_bin(basename)