diff --git a/tasmota/tasmota_support/support_esp.ino b/tasmota/tasmota_support/support_esp.ino index 7d451d612..5fc80f08b 100644 --- a/tasmota/tasmota_support/support_esp.ino +++ b/tasmota/tasmota_support/support_esp.ino @@ -656,17 +656,14 @@ float CpuTemperature(void) { return t; */ #else - #ifndef CONFIG_IDF_TARGET_ESP32S3 // Currently (20210801) repeated calls to temperatureRead() on ESP32C3 and ESP32S2 result in IDF error messages - static float t = NAN; - if (isnan(t)) { - t = (float)temperatureRead(); // In Celsius +static float t = NAN; + if (isnan(t)) { + t = (float)temperatureRead(); // In Celsius } return t; - #else - return NAN; #endif -#endif +return NAN; } /* diff --git a/tasmota/tasmota_xsns_sensor/xsns_127_esp32_sensors.ino b/tasmota/tasmota_xsns_sensor/xsns_127_esp32_sensors.ino index 8ac2ee7f6..93c9b24eb 100644 --- a/tasmota/tasmota_xsns_sensor/xsns_127_esp32_sensors.ino +++ b/tasmota/tasmota_xsns_sensor/xsns_127_esp32_sensors.ino @@ -19,7 +19,6 @@ #ifdef ESP32 #ifdef USE_ESP32_SENSORS -#ifndef CONFIG_IDF_TARGET_ESP32S3 /*********************************************************************************************\ * ESP32 CPU Temperature and optional Hall Effect sensor * @@ -139,7 +138,5 @@ bool Xsns127(uint8_t function) { } return result; } - -#endif // Not CONFIG_IDF_TARGET_ESP32S3 #endif // USE_ESP32_SENSORS #endif // ESP32