This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP430FR5739 not blinking

Other Parts Discussed in Thread: MSP430FR5739, MSP-EXP430FR5739

Hi

I'm trying to start my first example on MSP430FR5739  using blinking led code .  When I debug and run the code this message is displayed and the LED is not

blinking

this is the message :

MSP430:  There were 70 (code) and 66 (data) bytes written to FLASH/FRAM. The expected RAM usage is 160 (uninitialized data + stack) bytes.

what this message means and how can I fix it ?


Thanks for help


#include <msp430.h>

int main(void)

{

WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT

P1DIR |= BIT0;
P1OUT |= BIT0;

  while(1)
  {

    P1OUT ^= BIT0;

   __delay_cycles(100000);

}

}

**Attention** This is a public forum