PlatformIO / Arduino ESP32 的默认 CPU 时钟频率是多少?

在 PlatformIO / Arduino 上,默认情况下 ESP32 时钟频率为 80 MHz默认 240 MHz CPU 频率除以 4

如果你想自己验证这一点,使用此固件:

esp32_timer_base_clk_example.cpp
#include <Arduino.h>

void setup() {
    Serial.begin(115200);
    Serial.println(TIMER_BASE_CLK);
}

void loop() {
}

Check out similar posts by category: Arduino, Electronics, Embedded, ESP8266/ESP32, PlatformIO