How to change ESP32 CPU frequency
Learn how to change the CPU frequency of ESP32 using Arduino IDE. We will explain methods for reading and changing the CPU frequency. Optimizing CPU speed can significantly impact performance and power consumption, and changing the clock speed can significantly change the power consumption of IoT devices.
Table of Content
Why to Change CPU Speed?
Exploring why adjusting clock speed is crucial provides context for this tutorial. We’ll discuss scenarios where altering CPU frequency becomes essential, such as
- Power Management: Reducing CPU speed to conserve battery life in portable devices.
- Performance Optimization: Increasing CPU speed for time-sensitive tasks or computational-heavy operations.
Choosing a frequency is a tradeoff between power consumption and computations.
Components Required
- ESP32 Development Board
- USB Cable
- Arduino IDE
ESP32 CPU Frequency
1. Get (Read) CPU Frequency
You can read the CPU frequency by using getFrequency() function. This function returns the current CPU frequency.
2. Set (Change) CPU Frequency
To change the CPU frequency you can use the setCpuFrequencyMhz(frequency) function. This function returns the current CPU frequency.
Code
/*
acceptable frequencies >>> 240, 160, 80
setCpuFrequencyMhz(frequency);
*/
uint32_t cpuFrequency = 0;
uint32_t crystalFrequency = 0;
void setup()
{
Serial.begin(115200);
getFrequency();
setCpuFrequencyMhz(160);
getFrequency();
setCpuFrequencyMhz(80);
getFrequency();
}
void loop()
{
}
void getFrequency()
{
cpuFrequency = getCpuFrequencyMhz();
Serial.print("CPU frequency = ");
Serial.print(cpuFrequency);
Serial.println(" MHz");
crystalFrequency = getXtalFrequencyMhz();
Serial.print("Crystal frequency = ");
Serial.print(crystalFrequency);
Serial.println(" MHz");
}