UvA NetCentric Computing listener

Dependencies:   AndroidAccessory mbed

Revision:
0:0f9ceecf1db8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MbedCommand.h	Thu May 22 08:33:12 2014 +0000
@@ -0,0 +1,23 @@
+#ifndef __MBED_COMMAND_H__
+#define __MBED_COMMAND_H__
+
+#include "USBHost.h"
+
+struct MbedRequest {
+    MbedRequest() { }
+    int id;
+    int commandId;
+    int n;
+    float *args;
+};
+
+struct MbedResponse {
+    MbedResponse() { }
+    int requestId;
+    int commandId;
+    int error;
+    int n;
+    float *values;
+};
+
+#endif
\ No newline at end of file