Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Revision:
0:65cfa4873284
Child:
1:057d8fc6cb2f
diff -r 000000000000 -r 65cfa4873284 src/ConfigurationHandler/ConfigurationHandler.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ConfigurationHandler/ConfigurationHandler.h	Thu Sep 01 18:57:04 2016 +0000
@@ -0,0 +1,29 @@
+/******************************************************************************
+ * 
+ * File:                ConfigurationHandler.h
+ * Desciption:          interface file for the ICE Configuration Handler
+ *
+ *****************************************************************************/
+#ifndef CONFIGURATION_HANDLER_H
+#define CONFIGURATION_HANDLER_H
+
+void ConfigurationHandler(void const *args);
+void ConfigurationHandler_DisplayThreads(void);
+
+extern void TimerControl(void const *args);
+extern void ManualControl(void const *args);
+extern void SetpointControl(void const *args);
+extern void CompositeControl(void const *args);
+extern void PIDControl(void const *args);
+
+typedef struct args_t {
+    char            filename[32];
+    unsigned int    reserved;
+} Args_t; 
+
+typedef struct Tcb_tag {
+    Thread *t;
+    Args_t  args;
+} Tcb_t;
+
+#endif