Hi. In old days, with AVR, i can read binary as HEX file using AVR studio.
It was very useful for me.
Anyway, I'm curious. Is there any method do that with keil?
Is there any menu or command?
My target is M0 (nrf51). and programmer is CMSIS-DAP (FRDM-KL25Z)
I wanna make HEX file from code memory on target.
I'm not saying about flash load to target.
Thanks for reading. Have a nice day.
I believe you are talking about the save command in uVision.
Goto the command windows in uVision.
Enter
save c:\temp.hex 0x00000000, 0x00000200
this will save the first 512 bytes as a hex file (actually 513 in the above example
Parameters are filename, start address, end address