UVC host library

Dependents:   LifeCam WebcamServer

Committer:
va009039
Date:
Tue Jul 31 13:58:03 2012 +0000
Revision:
0:b0f04c137829
fix probe commit control

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:b0f04c137829 1 #ifndef USB_ITD_H
va009039 0:b0f04c137829 2 #define USB_ITD_H
va009039 0:b0f04c137829 3 #include "UsbInc.h"
va009039 0:b0f04c137829 4 #include "usb_mem.h"
va009039 0:b0f04c137829 5
va009039 0:b0f04c137829 6 class usb_itd {
va009039 0:b0f04c137829 7 public:
va009039 0:b0f04c137829 8 usb_itd(HCITD* itd);
va009039 0:b0f04c137829 9 bool Done();
va009039 0:b0f04c137829 10 int ConditionCode();
va009039 0:b0f04c137829 11 int FrameCount();
va009039 0:b0f04c137829 12 int PacketStatus(int n);
va009039 0:b0f04c137829 13 int Length(int n);
va009039 0:b0f04c137829 14 uint8_t* BufferPage(int n, int size);
va009039 0:b0f04c137829 15 uint16_t StartingFrame();
va009039 0:b0f04c137829 16 void free();
va009039 0:b0f04c137829 17 void debug();
va009039 0:b0f04c137829 18 private:
va009039 0:b0f04c137829 19 uint16_t get_psw(int n);
va009039 0:b0f04c137829 20 HCITD* m_itd;
va009039 0:b0f04c137829 21 };
va009039 0:b0f04c137829 22
va009039 0:b0f04c137829 23 #endif //USB_ITD_H