1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-05 11:23:47 +01:00

Reduce Component memory usage by 40% (8 bytes per component) (#9278)

This commit is contained in:
J. Nick Koston
2025-07-01 20:43:40 -05:00
committed by GitHub
parent 6a096c1d5a
commit 03566c34ed
3 changed files with 93 additions and 10 deletions

View File

@@ -84,6 +84,10 @@ void Application::setup() {
}
ESP_LOGI(TAG, "setup() finished successfully!");
// Clear setup priority overrides to free memory
clear_setup_priority_overrides();
this->schedule_dump_config();
this->calculate_looping_components_();
}