We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9253e commit a4ae856Copy full SHA for a4ae856
cores/esp8266/Schedule.cpp
@@ -120,10 +120,12 @@ void run_scheduled_functions()
120
{
121
if (toCall->mFunc())
122
123
+ // function stays in list
124
lastRecurring = toCall;
125
}
126
else
127
128
+ // function removed from list
129
InterruptLock lockAllInterruptsInThisScope;
130
131
if (sFirst == toCall)
@@ -137,6 +139,9 @@ void run_scheduled_functions()
137
139
recycle_fn_unsafe(toCall);
138
140
141
142
+ else
143
144
+ lastRecurring = toCall;
145
146
147
fence = false;
0 commit comments