Smart Thermostat is now a legacy project › Forums › English support forum › rtc_clk_cpu_freq issue › Reply To: rtc_clk_cpu_freq issue
01/11/2023 at 20:59
#1715
Participant
I think it is not the right solution, but i disabled some codes with //
[code]
void setup() {
Serial.begin(115200);
//slowDownCpu();
pinMode(ONBOARD_LED_PIN, OUTPUT);
dht.setup(DHT_PIN, DHT_TYPE);
setUpWifi();
}
//void slowDownCpu() {
//rtc_clk_cpu_freq_set(RTC_CPU_FREQ_160M);
//uart_tx_wait_idle(0);
//int clockspeed = rtc_clk_cpu_freq_get();
//char* clockSpeeds[5] = {“XTAL”, “80Mhz”, “160Mhz”, “240Mhz”, “2Mhz”};
//Serial.print(“Setting CPU freq to: “);
//Serial.println(clockSpeeds[clockspeed]);
//Serial.println(“”);
//}
[/code]
It worked.
Does anyone know the right solution?