Hello,
I want to include about 16KB of raw data in the firmware of my application, using the MSP430F5528.
My application code is about 32KB so there should be enough space in the Flash, however I do not know how I can include the data, which are in the form of a binary file.
I have thought of either creating a 16KB uint8_t array which is initialised to the desired values read directly from the raw file at compile time, or including the raw data in the final firmware by pointing to it somehow from the CCS linker command file.
I have not however managed to find how exactly I could do either of the above.
If it's important, the data is the firmware for a secondary chip I am using and which must be loaded to the chip on startup.
The final firmware must be in .TXT form, suitable for programming though the USB BSL.
Thank you in advance,
Giannis