Tool/software:
Hello,
I'm trying to copy a prebuilt .bin file to a specific location in the output file using the linker.
The goal is to place a previously created bootloader at 0x0000 of memory so that I have both projects in one hex file
I created a new section in the linker command file and tried to load the bootloader.bin into the defined MEMORY area.
SECTIONS
{
.my_boot: type = NOINIT {../Bootloader/bootloader.bin } > BOOT
But I'm getting the error
Description Resource Path Location Type
#10004 unrecognized file: "../Bootloader/bootloader.bin" linker.cmd /firmware-ti line 68 C/C++ Problem
maybe I have to specify my file as a binary. But I don't know how. And I didn't find something about this in the TI ARM clang User's Guide.
I'm using CCS 12.8.1. The bootloader.bin is found by the linker, otherwise I'm getting an other error.
I hope it is clear what I would like to do and you can help me out.
Thanks in advance
Regards,
Timo