Part Number: MSP430F5659
Hi,
Please let me know about MSP430F5659;
i) What is the power-on procedure (execution sequence) from 3.3V availability to the beginning of the main()?
ii) How long does it actually take for executing the main() after the 3.3V stable?
iii) Any ideas for shortening the power-up delay?
Note: In my application, I need to make a crucial decision within 10ms of power-up (3.3V), yet I'm experiencing a startup delay of 46ms (Test code attached)
For reference, attached Test results taken from my application:
1) Power on delay from 3.3V stabilization point [GREEN] to start of main [PINK]
Measured time = 46ms

2) Main code used for time delay measurement
int main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog
_DINT(); // Disable interrupt
// Debug IO (P7.4) configuration
P7SEL &= (~BIT4);
P7DIR |= BIT4;
P7OUT |= BIT4; // Pink signal in the scope image
..
..
while(1)
{
...
}
}