Portduino WIP now compiles but does not link

This commit is contained in:
geeksville
2020-09-05 12:34:48 -07:00
parent 6a475d8288
commit fefd3d78f3
26 changed files with 41 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
#pragma once
#include <Arduino.h>
#include "PeriodicScheduler.h"
#include "timing.h"
namespace concurrency {
@@ -38,7 +38,7 @@ class PeriodicTask
*/
void setPeriod(uint32_t p)
{
lastMsec = timing::millis(); // reset starting from now
lastMsec = millis(); // reset starting from now
period = p;
}