SLAZ300AD October 2012 – August 2021 MSP430F5509
SYS Module
Functional
Increased current consumption after a PUC
After a PUC, an increased current consumption is seen.
Insert the following memory initialization code at the beginning of the application firmware.
Assembly Initialization Code:
mov.w #0x9628, &0x0900
mov.w #0x0800, &0x0908
mov.w #0x9600, &0x0900
C Initialization Code:
unsigned int *Address = ((unsigned int*)INIT_MEMORY_ADDR);
*Address = 0x9628;
*(Address+4) = 0x0800;
*Address = 0x9600;
where INIT_MEMORY_ADDR is defined as:
#define INIT_MEMORY_ADDR 0x0900