Part Number: MSP430F5244
Hi,
I am using MSP430F5244 with CCS 5.6 for the development. I am trying to update the mcu firmware using Flash based application.
I am following the procedure as:
1. Written a sample code and generate the TI.txt file in CCS.
2. Divide the Flash into two parts.
FLASH_MEM : origin = 0x4400, length = 0x0200
FLASH : origin = 0x4600, length = 0x5CC0
FLASH_X : origin = 0xA2C0, length = 0x5CC0
3. Made area for RAM function.
RAM_MEM : origin = 0x2400, length = 0x0200
RAM : origin = 0x2600, length = 0x1E00
4. Application is in first partition of Flash and in the Second partion I have stored the new image.
5. After that jump to the RAM function, by which we can copy the image from second partition to first partition.
6. After copying all the image data, Reboot the mcu.
WDTCTL = WDT_MRST_0_064;
I am having a problem with mcu booting, after restart instruction it halt.
Please help me to overcome the problem.
Thank you.