Cooper Liu / Mbed 2 deprecated Eurobot2013_Co-Processor

Fork of Eurobot2013 by Oskar Weigl

Revision:
10:2bd9f4e02b74
Parent:
9:08552997b544
Child:
11:5ba926692210
--- a/ui/ui.h	Wed Nov 14 17:15:53 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-
-#ifndef UI_H
-#define UI_H
-
-#include "rtos.h"
-
-#define NUMIDS 32
-
-class UI {
-public:
-    Thread tUI;
-    
-    UI();
-    
-    bool regid(char id, unsigned int length);
-    bool updateval(char id, float* buffer, unsigned int length);
-    bool updateval(char id, float value);
-    bool unregid(char id);
-    
-private:
-    Mutex printlock;
-    char idlist[NUMIDS];
-    float* buffarr[NUMIDS];
-    volatile int newdataflags; //Only works for NUMID = 32
-    
-    void printloop();
-    static void printtw(void const *arg){ ((UI*)arg)->printloop(); }
-};
-
-#endif //UI_H