Low power deep sleep issues WROOM-32 vs PICO-D4 (IDFGH-3624)
Posted: Mon Jul 06, 2020 10:59 am
this code give completely differnet results on the above modules.
WROOM-32 deep sleeps at 5uA this is as expected.
PICO-D4 will only deep sleep at 500uA.... !!!!!!
I believe there is a silicon issue on the PICO-D4 ? why would they be so diffferent ?
void app_main(void)
{
while(true)
{
printf("Sleeping in 5 second(s)");
vTaskDelay(5000 / portTICK_PERIOD_MS);
printf("Entering deep sleep now!!");
esp_sleep_enable_timer_wakeup(10 * 1000000);
esp_deep_sleep_start();
}
}
note both units are on mininal boards i.e. only pullup on EN and decoupling caps.....
WROOM-32 deep sleeps at 5uA this is as expected.
PICO-D4 will only deep sleep at 500uA.... !!!!!!
I believe there is a silicon issue on the PICO-D4 ? why would they be so diffferent ?
void app_main(void)
{
while(true)
{
printf("Sleeping in 5 second(s)");
vTaskDelay(5000 / portTICK_PERIOD_MS);
printf("Entering deep sleep now!!");
esp_sleep_enable_timer_wakeup(10 * 1000000);
esp_deep_sleep_start();
}
}
note both units are on mininal boards i.e. only pullup on EN and decoupling caps.....