We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed40dd8 commit f2cfe52Copy full SHA for f2cfe52
cores/arduino/delay.c
@@ -73,7 +73,7 @@ void delay( uint32_t ms )
73
do
74
{
75
yield() ;
76
- } while ( _ulTickCount - start <= ms ) ;
+ } while ( _ulTickCount - start < ms ) ;
77
}
78
79
#include "Reset.h" // for tickReset()
0 commit comments