Part Number:MSP430FR5969
Tool/software: Code Composer Studio
I am using MSP430FR5969 LP with CCS using Energia Sketch and Enerytrace technology also, So according to my code when MCU is in sleep mode it consumes more than 500uA power but in the Energy trace state Diagram show truly in LPM4 mode. So please share some LPM4 mode code on Energia or Driverlib software.
Connection Configuration:
- All Uart and EZ-fet jumpers are removed
- J2 AsBypass mode
- J10 as external
- J12 for 3.3V in power source
- J9 Multimeter Current Probe connected in Current measurement mode.
- J13 All jumper open
- J11 for supercap Charge is also open.
Energia Sketch code:
void setup() { pinMode(RED_LED, OUTPUT); pinMode(PUSH1, INPUT_PULLUP); attachInterrupt(PUSH1, interrupt, FALLING); } void loop() { for (int i = 0; i < 5; i++) { digitalWrite(RED_LED, HIGH); delay(2000); digitalWrite(RED_LED, LOW); delay(2000); } suspend(); } void interrupt() { wakeup(); }
Please find attached Pictures of Energy Trace window.