cubecell WIP

This commit is contained in:
geeksville
2020-06-05 17:30:09 -07:00
parent 5915669f6f
commit 1c63a70673
8 changed files with 66 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
#include <Arduino.h>
// FIXME - ugly check to see if we have freertos
#ifdef configUSE_PREEMPTION
class Thread
{
protected:
@@ -86,4 +89,6 @@ class NotifiedWorkerThread : public WorkerThread
* A method that should block execution - either waiting ona queue/mutex or a "task notification"
*/
virtual void block();
};
};
#endif