video streaming using websocket. but,streaming is very slower than 0.1fps.

Dependencies:   BaseUsbHost EthernetInterface WebSocketClient mbed-rtos mbed

Fork of BaseUsbHost_example by Norimasa Okamoto

viewer

Revision:
0:2a9734a95d55
Child:
1:80205a2de336
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/UsbMouseHost/UsbMouseHost.h	Tue Dec 04 13:39:57 2012 +0000
@@ -0,0 +1,13 @@
+// UsbMouseHost.h
+#ifndef USB_MOUSE_HOST_H
+#define USB_MOUSE_HOST_H
+
+class UsbMouseHost {
+public:
+    UsbMouseHost(ControlEp* ctlEp = NULL);
+    int read(uint32_t* status, int millisec=osWaitForever);
+    ControlEp* m_ctlEp;
+    InterruptEp* m_intEp;
+};
+
+#endif //USB_MOUSE_HOST_H
\ No newline at end of file