You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arduino IDE version (found in Arduino -> About Arduino menu): 1.6.10
List the steps to reproduce the problem:
Just running the standard steppertest.ino example with more steps in one run
I found the solution already see: [https://github.com/esp8266/Arduino/issues/2377 ]
By adding in the library-code the delay(0) command.:
*
while (steps--) {
//Serial.println("step!"); Serial.println(uspers);
ret = onestep(dir, style);
delayMicroseconds(uspers);
//Rudy De Volder: to solve WDT problem with the ESP8266 simply add the following line:
delay(0);
}
The text was updated successfully, but these errors were encountered:
Just running the standard steppertest.ino example with more steps in one run
I found the solution already see: [https://github.com/esp8266/Arduino/issues/2377 ]
By adding in the library-code the delay(0) command.:
*
The text was updated successfully, but these errors were encountered: