We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f44e37 commit 41b5a86Copy full SHA for 41b5a86
cores/esp8266/core_esp8266_waveform_phase.cpp
@@ -309,7 +309,7 @@ static IRAM_ATTR void timer1Interrupt() {
309
uint32_t now = ESP.getCycleCount();
310
uint32_t isrNextEventCcy = now;
311
while (busyPins) {
312
- if (static_cast<int32_t>(isrNextEventCcy - now) > IRQLATENCYCCYS) {
+ if (static_cast<int32_t>(isrNextEventCcy - now) > IRQLATENCYCCYS + DELTAIRQCCYS) {
313
waveform.nextEventCcy = isrNextEventCcy;
314
break;
315
}
0 commit comments