Due Mini power consumption
Posted: Fri Jul 25, 2014 5:32 am
Does anyone knows what's the power consumption for the board in active and backup mode ?
If any administrator that has a board, can this write an empty program and measure at 3.3V ?
For those that want to put the board in backup mode use the following code:
#include <include\pmc.h>
pmc_enable_backupmode();
Also the LED of the board should be closed. For this setting you can set the LED to LOW:
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, LOW);
Thanks.
If any administrator that has a board, can this write an empty program and measure at 3.3V ?
For those that want to put the board in backup mode use the following code:
#include <include\pmc.h>
pmc_enable_backupmode();
Also the LED of the board should be closed. For this setting you can set the LED to LOW:
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, LOW);
Thanks.