Track microseconds overflow

Closes: https://github.com/espressif/arduino-esp32/pull/267
This commit is contained in:
me-no-dev
2017-03-20 11:21:56 +02:00
parent e81d4d3f72
commit 786425509e
2 changed files with 18 additions and 4 deletions

View File

@ -14,6 +14,7 @@ void loopTask(void *pvParameters)
{
setup();
for(;;) {
micros(); //update overflow
loop();
}
}