BaseUsbHost example program

Dependencies:   BaseUsbHost FATFileSystem mbed mbed-rtos

Revision:
2:c10029b87439
Parent:
1:80205a2de336
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LifeCamVX700/LifeCamVX700.h	Tue Dec 11 15:28:00 2012 +0000
@@ -0,0 +1,25 @@
+// LifeCamVX700.h 2012/12/5
+#ifndef LIFECAM_VX700_H
+#define LIFECAM_VX700_H
+
+#define VX700_VID 0x045e
+#define VX700_PID 0x074a
+
+#define VX700_160x120 5
+#define VX700_176x144 4
+#define VX700_320x240 3
+#define VX700_352x288 2
+#define VX700_640x480 1
+
+#define VX700_MJPEG 1
+
+#define VX700_EN  0x81
+#define VX700_MPS  128
+#define VX700_IF_ALT 1 
+
+class LifeCamVX700 : public BaseUvc{
+public:
+    LifeCamVX700(int frameIndex = VX700_160x120, uint32_t interval = _5FPS, ControlEp* ctlEp = NULL);
+    static bool check(ControlEp* ctlEp);
+};
+#endif //LIFECAM_VX700_H