目的
在Coding过程中经常需要把某文件load到IC的RAM中。
此时需要把文件转换为16进制数
,利用I2C、SPI等接口进行load操作。
Code
代码说明
由于在Coding过程中,文件转换成的十六进制数常常以头文件
的形式被调用,所以直接将代码输出样式写成头文件
的形式。
功能:将文件转换为十六进制数
用法:python bin_to_hex.py file.bin > dst.h
如果想用C语言实现此功能,请转到另一篇Blog:Bin文件转换为十六进制(C语言)
代码实例
# bin_to_hex.py
from __future__ import print_function
import sys
filepath = sys.argv[1]
binfile = open(filepath, 'rb')
i = 0;
ch = binfile.read(1)
print ("\n", filepath, "will be converted to HEX !\n")
print ("#ifndef __ERIC_CONVERT_TO_HEX_H__")
print ("#define __ERIC_CONVERT_TO_HEX_H__\n")
print ("unsigned char array_*[] = {")
while ch:
data = ord(ch)
i = i + 1
if i % 16 == 1:
print ("\t0x%02X, " %(data), end='')
elif i % 16 == 0:
print ("0x%02X," %(data), end='')
print ('')
else:
print ("0x%02X, " %(data), end='')
ch = binfile.read(1)
print ("\n};")
print ("\n#endif /* __ERIC_CONVERT_TO_HEX_H__ */")
binfile.close()