hi all,
if I create secure boot loader "srec file" or "elf file" and there's another application "srec file."
how to merge it?
thanks!
Hi @Jay_Park1
it is possible to link binary/srec files directly to your project like this:
If you already have two srec files, you can merge them using srec_cat tool:
https://srecord.sourceforge.net/
Example:
srec_cat app.s19 boot.s19 -o combined.s19
Regards,
Lukas