Clean up comments in application.h

This commit is contained in:
J. Nick Koston
2026-04-04 10:32:49 -10:00
parent e372440ed2
commit 04b40f8f15
+2 -2
View File
@@ -556,12 +556,12 @@ class Application {
void wake_loop_threadsafe() { esphome::wake_loop_threadsafe(); }
#ifdef USE_LWIP_FAST_SELECT
/// Wake from ISR (ESP32/LibreTiny only). Delegates to esphome::wake_loop_isrsafe().
/// Wake from ISR (ESP32/LibreTiny only).
static void wake_loop_isrsafe(int *px) { esphome::wake_loop_isrsafe(px); }
#endif
#if defined(USE_ESP32) || defined(USE_LIBRETINY) || defined(USE_ESP8266) || defined(USE_RP2040)
/// Wake from any context (ISR, thread, callback). Delegates to esphome::wake_loop_any_context().
/// Wake from any context (ISR, thread, callback).
static void wake_loop_any_context() { esphome::wake_loop_any_context(); }
#endif