Hi,
I need to generate fixed-size bin file for MCU(MKL02Z32VFM4) in keil.
How can I do it?
Thanks very much.
Hi,
As you know that the size of *.bin is only dependent on your application code, if you want to get fixed size bin file, I suppose you can add the "nop" operation, which only occupies the flash size, but does not do anything. Furthermore, you can add a useless array with constant data.
uint32_t array[]={0x00,0x01,....};
Hope it can help you
BR
XiangJun Rong
Hi Xiangjun,
Get it.
Thanks very much.