From 145378f6ec34322a8f0383564d66173b8896401f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 28 May 2025 09:06:41 -0500 Subject: [PATCH] revert breaking change, its not needed as the tradeoff to switch a delay to a select means we were already idle --- esphome/core/application.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/esphome/core/application.h b/esphome/core/application.h index db5be1f7f7..6236bf8f76 100644 --- a/esphome/core/application.h +++ b/esphome/core/application.h @@ -568,11 +568,7 @@ class Application { const char *compilation_time_{nullptr}; bool name_add_mac_suffix_; uint32_t last_loop_{0}; -#ifdef USE_SOCKET_SELECT_SUPPORT - uint32_t loop_interval_{21}; // Increased interval when select() is available for better efficiency -#else uint32_t loop_interval_{16}; // Standard interval for platforms without select() -#endif size_t dump_config_at_{SIZE_MAX}; uint32_t app_state_{0}; Component *current_component_{nullptr};