Hello All,
The conroller is MSP430F249.
Well the whole story is that my embedded system be able to upgrade firmware of a chip on my PCB. My embedded system is a SPI based system. So PC can not help for firmware upgrade of the chip.
The firmware size of the chip is about 475 Kbytes. While MSP430F249 is having 60 Kbytes of flash.
I tried the following 2 approaches, but the linker gives me error that .const (or .myConst) section is not big enough.
1. const unsigned short someDataArray[] = {
#include "someData"
};
2. #pragma DATA_SECTION (someDataArray, ".myConst");
const unsigned short someDataArray[] = {
#include "someData"
};
How to overcome above problem?
Your help is very much appreciated.
Babu