remove mdelay and millis from platform

This commit is contained in:
Thomas Kunze
2019-08-22 21:31:02 +02:00
parent da5466ab02
commit db740d6687
18 changed files with 204 additions and 398 deletions

View File

@@ -18,7 +18,7 @@ long lastsend = 0;
void measureTemp()
{
long now = platform->millis();
long now = millis();
if ((now - lastsend) < 10000)
return;
@@ -97,6 +97,6 @@ int main(int argc, char **argv)
knx->loop();
if(knx->configured())
appLoop();
platform->mdelay(100);
delay(100);
}
}