S3 Temp sensor support

This commit is contained in:
Jason2866 2022-08-18 16:10:21 +02:00 committed by GitHub
parent 94c88df93b
commit f64bddea04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 10 deletions

View File

@ -656,17 +656,14 @@ float CpuTemperature(void) {
return t; return t;
*/ */
#else #else
#ifndef CONFIG_IDF_TARGET_ESP32S3
// Currently (20210801) repeated calls to temperatureRead() on ESP32C3 and ESP32S2 result in IDF error messages // Currently (20210801) repeated calls to temperatureRead() on ESP32C3 and ESP32S2 result in IDF error messages
static float t = NAN; static float t = NAN;
if (isnan(t)) { if (isnan(t)) {
t = (float)temperatureRead(); // In Celsius t = (float)temperatureRead(); // In Celsius
} }
return t; return t;
#else
return NAN;
#endif #endif
#endif return NAN;
} }
/* /*

View File

@ -19,7 +19,6 @@
#ifdef ESP32 #ifdef ESP32
#ifdef USE_ESP32_SENSORS #ifdef USE_ESP32_SENSORS
#ifndef CONFIG_IDF_TARGET_ESP32S3
/*********************************************************************************************\ /*********************************************************************************************\
* ESP32 CPU Temperature and optional Hall Effect sensor * ESP32 CPU Temperature and optional Hall Effect sensor
* *
@ -139,7 +138,5 @@ bool Xsns127(uint8_t function) {
} }
return result; return result;
} }
#endif // Not CONFIG_IDF_TARGET_ESP32S3
#endif // USE_ESP32_SENSORS #endif // USE_ESP32_SENSORS
#endif // ESP32 #endif // ESP32