将 Intel HEX 文件转换为二进制文件
我有一个 Intel HEX 文件,我想要一个二进制文件。 如何,在Python中?
我认为使用 binascii 模块 但我不知道什么功能最合适。 谢谢
I have a Intel HEX file and I want to have a binary file.
How, in python ?
I think use the binascii module but I don't know what function is the most appropriate.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能对IntelHex python 库感兴趣。
You may be interested in the IntelHex python lib.
如果您有一个十六进制字符串,则可以使用
decode
方法对其进行解码。例如,If you have a string of hex, you can decode it using the
decode
method. For instance,