Deep power down mode uses approximately 1mA why?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Deep power down mode uses approximately 1mA why?

205 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by lab1 on Thu Apr 03 01:58:26 MST 2014
I am trying to make an example that will use the Deep Power Down Mode, but my printer uses approximately 1mA. I am not sure if there are errors in my code, or it's my test print that has an error.
Is there anyone who could please look at my code and print(Page2) and tell me if there is something wrong?

Chip LPC11C14

#include "chip.h"
int main(void) {
LPC_SYSCTL->SSP0CLKDIV = 0;
LPC_SYSCTL->SSP1CLKDIV = 0;
LPC_SYSCTL->WDTCLKDIV = 0;

    while(1) {
    LPC_PMU->PCON= (1<<1)|(1<<11);
   SCB->SCR|=(1<<2);
    LPC_SYSCTL->PDRUNCFG &= ~((1<<0) | (1<<1));
    __WFI();
    }
    return 0 ;
}

[img=1024x760]http://s3.postimg.org/p31k2ozw3/Unavngivet.png[/img]
Labels (1)
0 Kudos
1 Reply

192 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by embd02161991 on Thu Apr 03 10:44:29 MST 2014
Hi,

Please refer to the following Low Power Application Note AN11027 :

http://www.lpcware.com/content/nxpfile/an11027-using-lpc1100-low-power-modes-and-wake-times-lpcxpres...

Thanks,

NXP Technical Support
0 Kudos