ESP32-S2-MINI-1 power consumption doesn't match to the datasheet
Posted: Thu Aug 19, 2021 12:48 pm
Hi all,
I am checking the power consumption of the ESP32-S2-MINI-1.
https://www.espressif.com/sites/default ... eet_en.pdf
Table 8, Section 4.4 "Current Consumption Characteristics" shows
Normal speed: 80 MHz - Current consumption (Typ) : 14 mA
When measuring, it turned out that the values differ from those indicated in the documentation.
My measurements showed a value of 21.8 mA, expected value 14 mA
ESP-IDF release-v4.2
Measurement program:
/////////////////////////////////////////////
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "sdkconfig.h"
void app_main(void)
{
while(1)
{
vTaskDelay(10);
}
}
/////////////////////////////////////////////
sdkconfig:
/////////////////////////////////////////////
# Power Management
#
# CONFIG_PM_ENABLE is not set
# end of Power Management
# ESP32S2-specific
#
CONFIG_ESP32S2_DEFAULT_CPU_FREQ_80=y
# CONFIG_ESP32S2_DEFAULT_CPU_FREQ_160 is not set
# CONFIG_ESP32S2_DEFAULT_CPU_FREQ_240 is not set
CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ=80
//////////////////////////////////////////////
Under what conditions were the measurements taken in the documentation?
How to achieve power consumption at Normal speed: 80 MHz - 14 mA?
I am checking the power consumption of the ESP32-S2-MINI-1.
https://www.espressif.com/sites/default ... eet_en.pdf
Table 8, Section 4.4 "Current Consumption Characteristics" shows
Normal speed: 80 MHz - Current consumption (Typ) : 14 mA
When measuring, it turned out that the values differ from those indicated in the documentation.
My measurements showed a value of 21.8 mA, expected value 14 mA
ESP-IDF release-v4.2
Measurement program:
/////////////////////////////////////////////
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "sdkconfig.h"
void app_main(void)
{
while(1)
{
vTaskDelay(10);
}
}
/////////////////////////////////////////////
sdkconfig:
/////////////////////////////////////////////
# Power Management
#
# CONFIG_PM_ENABLE is not set
# end of Power Management
# ESP32S2-specific
#
CONFIG_ESP32S2_DEFAULT_CPU_FREQ_80=y
# CONFIG_ESP32S2_DEFAULT_CPU_FREQ_160 is not set
# CONFIG_ESP32S2_DEFAULT_CPU_FREQ_240 is not set
CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ=80
//////////////////////////////////////////////
Under what conditions were the measurements taken in the documentation?
How to achieve power consumption at Normal speed: 80 MHz - 14 mA?