From 8f367571f8547b3e3cacd5ce654bffc77cb910d8 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 9 Feb 2026 20:01:43 -0600 Subject: [PATCH] Add precondition comment to process_dump_config_() --- esphome/core/application.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/core/application.h b/esphome/core/application.h index 46cf6ebcda2..8478100a56f 100644 --- a/esphome/core/application.h +++ b/esphome/core/application.h @@ -521,6 +521,7 @@ class Application { /// Process dump_config output one component per loop iteration. /// Extracted from loop() to keep cold startup/reconnect logging out of the hot path. + /// Caller must ensure dump_config_at_ < components_.size(). void __attribute__((noinline)) process_dump_config_(); void feed_wdt_arch_();