..\..\..\..\..\ML51_BSP\Library\Startup\exe\hex2bin.exe .\output\@L.hex
hex2bin.exe .\output\@L.hex
*By default, unused location will be filled with FF
hex2bin.exe .\output\@L.hex -P 0x00
* With parameter �VP or �Vp filled with data defined following. In this case will be filled with 00.
hex2bin.exe .\output\@L.hex -p 0xFF
*Same as �VP. in this case filled with FF
hex2bin.exe .\output\@L.hex 0x0 0x1000 0xFF80 0x80
*Create two bin file. Unused location filled with 00.The first file <project>.bin data create start from 0x00 and file size is0x1000. The second file <project name1>.bin create start from 0xFF80 file size is 0x80.
hex2bin.exe .\output\@L.hex -P 0xFF 0x0 0x1000 0xFF80 0x80
*Create two bin file. Unused location filled parameter after �VP defined. In this case will be filled with FF.