Merge remote-tracking branch 'origin/esp8266-wake-loop-any-context' into integration

This commit is contained in:
J. Nick Koston
2026-03-02 09:30:43 -10:00
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ void socket_delay(uint32_t ms);
/// Signal socket/IO activity and wake the main loop from esp_delay() early.
/// ISR-safe: uses IRAM_ATTR internally and only sets a volatile flag + esp_schedule().
void socket_wake();
void socket_wake(); // NOLINT(readability-redundant-declaration)
#endif
} // namespace esphome::socket
+1 -2
View File
@@ -39,10 +39,9 @@
#endif // USE_SOCKET_SELECT_SUPPORT
#if defined(USE_ESP8266) && defined(USE_SOCKET_IMPL_LWIP_TCP)
namespace esphome::socket {
void socket_wake();
void socket_wake(); // NOLINT(readability-redundant-declaration)
} // namespace esphome::socket
#endif
#ifdef USE_BINARY_SENSOR
#include "esphome/components/binary_sensor/binary_sensor.h"
#endif