Other Parts Discussed in Thread: TMS320F280049C
Hello
I have been searching the forum for some hours now and have found some similar questions, but no answer that really helped:
In my c project, I need to include data that is not in a usable c-format and I would like to include it it as raw data into the flash.
For of those objects we created a section .blob in the in linker cmd-file and we include one of the files with c-style data (endless list of comma separated values) by
#pragma DATA_SECTION(blobfile,".blob");
static const unsigned char blobfile[] =
{
#include "file.dat"
};
The other file however id contains raw data and I would be happy to avoid post-processing the data to make it c-compatible.
Anyone an idea how to include this data-file when #include will not work?
Thank you in advance for your help!