Revert inline - ESP8266 compiler doesn't outline push_back ISRA

This commit is contained in:
J. Nick Koston
2026-02-27 22:06:05 -10:00
parent 55ffb62571
commit 97eba625b9
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -79,6 +79,7 @@ static void insertion_sort_by_priority(Iterator first, Iterator last) {
}
}
void Application::register_component_(Component *comp) { this->components_.push_back(comp); }
void Application::setup() {
ESP_LOGI(TAG, "Running through setup()");
ESP_LOGV(TAG, "Sorting components by setup priority");
+1 -1
View File
@@ -521,7 +521,7 @@ class Application {
#endif
#endif
inline void register_component_(Component *comp) { this->components_.push_back(comp); }
void register_component_(Component *comp);
void calculate_looping_components_();
void add_looping_components_by_state_(bool match_loop_done);