Improve ESP8266 iram usage (#3223)

This commit is contained in:
Otto Winter 2022-02-19 15:09:17 +01:00 committed by GitHub
parent 34c9d8be50
commit d2b209234f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ optional<uint32_t> HOT Scheduler::next_schedule_in() {
return 0;
return next_time - now;
}
void IRAM_ATTR HOT Scheduler::call() {
void HOT Scheduler::call() {
const uint32_t now = this->millis_();
this->process_to_add();