Hi all.
I'm facing a very strange behavior using a MSP430F5438A.
I have set P5.5 and P5.6 as GPIO inputs without pull up/down, say:
P5SEL &= ~(BIT5|BIT6);
P5DIR &= ~(BIT5|BIT6);
P5REN &= ~(BIT5|BIT6);
Then, simply moving from:
P5OUT &= ~(BIT5|BIT6);
to:
P5OUT |= (BIT5|BIT6);
the current drawn by full system decreases by 100 uA (from 280 to 180 uA in LPM3 running from XT1).
Has anyone ever seen something like this or has a plausible explanation?
Thank you in advance.
Regards,
Peppe