HEX 转BIN , bin转IMG 文件工具, 分3部完成转换。1, 打开CMD
首先要将需要转换的HEX文件放在转换目录下。
CD到文件所在目录:
cd C:\Users\JC\Desktop\测试\OTA_test\OTA_test\projects\target_apps\ble_examples\ble_app_ota\Keil_5\out_580
2,将HEX文件转换为bin文件,使用如下指令:
hex2bin -e bin ble_app_ota_580.hex
3,将bin文件再转换为IMG文件,使用如下指令:
mkimage single ble_app_ota_580.bin fw_0_version.h ble_app_ota_580.img
1