rtos example

Dependencies:   mbed-rtos mbed

Fork of mbed_blinky by Mbed

Revision:
8:ec1a44f8e456
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Runnable.h	Thu Feb 04 10:43:16 2016 +0000
@@ -0,0 +1,20 @@
+#ifndef RUNNABLE_H_
+#define RUNNABLE_H_
+
+#include "mbed.h"
+
+class Runnable {
+    
+private:
+    
+public:
+
+    virtual void run() = 0;    
+    
+    static void callback(void const *argument);
+    
+};
+
+
+
+#endif
\ No newline at end of file