Hello,
I am programming a MSP430FG439 which is in a board with an FPGA IGLOO of Actel. When I put the microcontroller in the low power mode there isn't any change in the consumption of the board. However, I appreciate that the MSP430FG439 is in the low power mode because the clocks become disabled. I have tried with a simple program like this :
#include <msp430xG43x.h>
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P1SEL |= 0x32; // sel=1 para el aclk para que sea funcion del modulo periferico (P1.5)
TACTL= MC_1;
P1DIR = 0xFF;
P2DIR = 0xFF;
P3DIR = 0xFF;
P4DIR = 0x00;
P5DIR = 0xFF;
P6DIR = 0xFF;
P1OUT = 0x00;
P2OUT = 0x00;
P3OUT = 0x00;
P4OUT = 0x00;
P5OUT = 0x00;
P6OUT = 0x00;
_BIS_SR(LPM4_bits + GIE); // Enter LPM3
}
I guess that even when the program is so simple I should appreciate a change in the consumption
Thanks