Hi all,
Checksum calculated by the FLASH programmer utility is different from the checksum calculated using the below code.
FLASH programmer utility : FlashAPIInterface28335V2_10.out
Sum = 0x0;
Uint16 *StartSegmentPointer = (Uint16 *)0x300000;
Uint16 *EndSegmentPointer = (Uint16 *)0x340000;
while(StartSegmentPointer < EndSegmentPointer)
{
Sum += *StartSegmentPointer;
StartSegmentPointer++;
}
Please help me out on why the checksums are not matching?
Thank you,
Jaiganesh