Hello, I am working on a school project and I am hoping someone can assist me.
I am using the dx800k005 AISGen utility for a C7645 chip. I have successfully booted from UART using the TI UART Boot host and I would now like to get the AIS data into my SPIFlash ROM. Using AISGen I have created a new AIS output for my SPI0 and saved it as a .h header file. The header file contains a single array that looks like this:
const unsigned int nvram_image[] = {
0x41504954,
0x58535963,
0x5853590D,
...
};
Can I now just copy this byte by byte into my SPI Flash rom? If so how exactly should it be copied?
Should my first ROM addresses look like this?
0x00000000 = 0x54
0x00000001 = 0x49
0x00000002 = 0x50
0x00000003 = 0x41
0x00000004 = 0x63
and so on?
Any help on this matter would be much appreciated.
Thank you,
Paul