This commit is contained in:
J. Nick Koston
2025-12-28 13:43:04 -10:00
parent 16315d72b6
commit cd3dadb3c9

View File

@@ -215,7 +215,8 @@ void Application::loop() {
#if defined(USE_ESP32_VARIANT_ESP32) && !defined(USE_ESP32_MIN_CHIP_REVISION_SET)
// Suggest optimization for chips that don't need the PSRAM cache workaround
if (chip_info.revision >= 300) {
ESP_LOGW(TAG, "Set minimum_chip_revision: \"3.0\" to reduce binary size");
ESP_LOGW(TAG, "Set minimum_chip_revision: \"%d.%d\" to reduce binary size", chip_info.revision / 100,
chip_info.revision % 100);
}
#endif
#endif